mirror of
https://github.com/AdguardTeam/AdGuardHome.git
synced 2024-11-15 18:08:30 -07:00
refactor: 💡 optimizing GC
Setting debug.SetGCPercent makes golang free memory faster. This greatly improves overall RSS usage. Otherwise, golang prefers not to free memory at all:)
This commit is contained in:
parent
c2dacd32d1
commit
479675b6cc
3
main.go
3
main.go
@ -1,6 +1,8 @@
|
|||||||
package main
|
package main
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"runtime/debug"
|
||||||
|
|
||||||
"github.com/AdguardTeam/AdGuardHome/home"
|
"github.com/AdguardTeam/AdGuardHome/home"
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -11,5 +13,6 @@ var version = "undefined"
|
|||||||
var channel = "release"
|
var channel = "release"
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
|
debug.SetGCPercent(10)
|
||||||
home.Main(version, channel)
|
home.Main(version, channel)
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user