GoBlog/garbagecollector.go

11 lines
133 B
Go
Raw Normal View History

2021-03-13 12:17:42 +00:00
package main
import (
"runtime/debug"
2021-03-13 12:17:42 +00:00
)
func initGC() {
// Set memory limit to 100 MB
debug.SetMemoryLimit(100 * 1000 * 1000)
2021-03-13 12:17:42 +00:00
}