반응형
Go memory 사용량 확인
var memStats runtime.MemStats
runtime.ReadMemStats(&memStats)
initialMemoryUsage := memStats.TotalAlloc
runtime.ReadMemStats(&memStats)
finalMemoryUsage := memStats.TotalAlloc
memoryUsed := finalMemoryUsage - initialMemoryUsage
fmt.Printf("총 메모리 사용량: %d bytes\n", memoryUsed)
반응형
'Golang > Let's Go' 카테고리의 다른 글
Go 1.21에서 추가된 slice 의 기능 (0) | 2023.11.04 |
---|---|
Go function? Go Method? (0) | 2023.10.12 |
BindJSON vs ShouldBindJSON (0) | 2023.10.12 |
Go 변수와 상수 (0) | 2023.10.01 |
Go 에러로 인한 서버 다운 막는 방법 (0) | 2023.08.28 |