패키지: context
주요 목적
예시
func doSomething(ctx context.Context) error {
// ctx.Done()을 통해 취소 신호 수신 여부 확인 가능
select {
case <-ctx.Done():
return ctx.Err() // 취소(canceled) 혹은 타임아웃(deadline exceeded)
default:
// 작업 수행
}
return nil
}
주요 타입
Context
: interfacecontext.Background()
, context.TODO()
: 가장 기본적인 Context 생성context.WithCancel()
, context.WithTimeout()
, context.WithDeadline()
: 취소/타임아웃이 있는 컨텍스트 생성패키지: reflect
주요 목적
예시
import "reflect"
func printTypeAndValue(i interface{}) {
v := reflect.ValueOf(i)
t := v.TypeOf()
println("Type:", t.String(), "Value:", v.Interface())
}
패키지: sync
주요 목적
예시
var wg sync.WaitGroup
wg.Add(1)
go func() {
defer wg.Done()
// 작업
}()
wg.Wait() // 모든 Add() 항목이 Done()될 때까지 대기
주요 타입
sync.Mutex
, sync.RWMutex
: 상호 배제 락sync.WaitGroup
: 여러 고루틴의 작업이 끝날 때까지 대기할 수 있도록 도와주는 구조체sync.Once
: 한 번만 실행해야 하는 초기화 코드를 안전하게 보장.sync.Cond
: 조건 변수(Condition Variable). 생산자-소비자 패턴 등의 시그널 처리unsafe