mirror of
https://github.com/AdguardTeam/AdGuardHome.git
synced 2024-11-16 18:38:52 -07:00
3e1f922252
Merge in DNS/adguard-home from 2270-fix-s-u-warnings to master
Squashed commit of the following:
commit 03e0f78bd471057007c2d4042ee26eda2bbc9b29
Merge: 50dc3ef5c 7e16fda57
Author: Eugene Burkov <e.burkov@adguard.com>
Date: Fri Nov 6 11:54:09 2020 +0300
Merge branch 'master' into 2270-fix-s-u-warnings
commit 50dc3ef5c44a5fdc941794c26784b0c44d7b5aa0
Author: Eugene Burkov <e.burkov@adguard.com>
Date: Thu Nov 5 19:48:54 2020 +0300
* all: improve code quality
commit d6d804f759ce3e47154a389b427550e72c4b9090
Author: Eugene Burkov <e.burkov@adguard.com>
Date: Thu Nov 5 18:03:35 2020 +0300
* all: fix all staticcheck simplification and unused warnings
Closes #2270.
41 lines
1.1 KiB
Go
41 lines
1.1 KiB
Go
package home
|
|
|
|
import (
|
|
"os"
|
|
"runtime/debug"
|
|
"time"
|
|
|
|
"github.com/AdguardTeam/golibs/log"
|
|
)
|
|
|
|
// memoryUsage implements a couple of not really beautiful hacks which purpose is to
|
|
// make OS reclaim the memory freed by AdGuard Home as soon as possible.
|
|
// See this for the details on the performance hits & gains:
|
|
// https://github.com/AdguardTeam/AdGuardHome/internal/issues/2044#issuecomment-687042211
|
|
func memoryUsage(args options) {
|
|
if args.disableMemoryOptimization {
|
|
log.Info("Memory optimization is disabled")
|
|
return
|
|
}
|
|
|
|
// Makes Go allocate heap at a slower pace
|
|
// By default we keep it at 50%
|
|
debug.SetGCPercent(50)
|
|
|
|
// madvdontneed: setting madvdontneed=1 will use MADV_DONTNEED
|
|
// instead of MADV_FREE on Linux when returning memory to the
|
|
// kernel. This is less efficient, but causes RSS numbers to drop
|
|
// more quickly.
|
|
_ = os.Setenv("GODEBUG", "madvdontneed=1")
|
|
|
|
// periodically call "debug.FreeOSMemory" so
|
|
// that the OS could reclaim the free memory
|
|
go func() {
|
|
ticker := time.NewTicker(5 * time.Minute)
|
|
for range ticker.C {
|
|
log.Debug("free os memory")
|
|
debug.FreeOSMemory()
|
|
}
|
|
}()
|
|
}
|