Recent posts

[AI] 기계 학습(Machine Learning)

less than 1 minute read

April 18 2024

정의 CMU의 교수 Tom M. Mitchell이 제시 A computer program is said to learn from experience E with respect to some class of tasks T and performance measure P, if...

[monitoring] psutil

1 minute read

April 03 2024

개요 process and system utilities CPU, memory, disks, network, sensors, processes 정보 검색을 위한 크로스 플랫폼 라이브러리

[Feature Flagging] GO Feature Flag

2 minute read

April 02 2024

개요 사이트/GitHub OpenFeature를 만족하는 프로바이더 OpenFeature SDK 또는 GO module로 사용 Feature Flag 구성 구성 접근방식 YAML, TOML or JSON S3, Google C...

[Feature Flagging] OpenFeature

less than 1 minute read

April 01 2024

개요 Feature Flagging에 대한 오픈 규격 사이트 규격 Feature Flag 코드 수정 없이 특정 기능을 활성화, 비활성화 또는 변경할 수 있도록 하는 소프트웨어 개발 기술 사용자 별 기능 노출, 릴리스 전략(카나리, A/B 등) 등에 사용...

[Go] finalizer

less than 1 minute read

March 01 2024

개요 일반적으로 finalizer 함수는 해당 오브젝트가 가비지 컬렉션되기 전에 실행 하지만 실행이 보장되지 않으므로 오브젝트의 소멸자로 사용하는 것은 의도하지 않은 동작을 초래 finalizer에서 리소스가 해제된다면 버그라고 볼 수 있음 리소스 릭을 최소화하거나...