mirror of
https://github.com/AdguardTeam/AdGuardHome.git
synced 2024-11-22 04:55:33 +03:00
*: memory usage hacks
This commit is contained in:
parent
408a8dea44
commit
8d66ede894
2 changed files with 33 additions and 1 deletions
|
@ -7,6 +7,7 @@ import (
|
||||||
"net/http"
|
"net/http"
|
||||||
"os"
|
"os"
|
||||||
"runtime"
|
"runtime"
|
||||||
|
"runtime/debug"
|
||||||
"strings"
|
"strings"
|
||||||
"sync"
|
"sync"
|
||||||
|
|
||||||
|
@ -528,6 +529,9 @@ func (d *Dnsfilter) initFiltering(allowFilters, blockFilters []Filter) error {
|
||||||
d.filteringEngine = filteringEngine
|
d.filteringEngine = filteringEngine
|
||||||
d.rulesStorageWhite = rulesStorageWhite
|
d.rulesStorageWhite = rulesStorageWhite
|
||||||
d.filteringEngineWhite = filteringEngineWhite
|
d.filteringEngineWhite = filteringEngineWhite
|
||||||
|
|
||||||
|
// Make sure that the OS reclaims memory as soon as possible
|
||||||
|
debug.FreeOSMemory()
|
||||||
log.Debug("initialized filtering engine")
|
log.Debug("initialized filtering engine")
|
||||||
|
|
||||||
return nil
|
return nil
|
||||||
|
|
30
main.go
30
main.go
|
@ -1,7 +1,9 @@
|
||||||
package main
|
package main
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"os"
|
||||||
"runtime/debug"
|
"runtime/debug"
|
||||||
|
"time"
|
||||||
|
|
||||||
"github.com/AdguardTeam/AdGuardHome/home"
|
"github.com/AdguardTeam/AdGuardHome/home"
|
||||||
)
|
)
|
||||||
|
@ -16,6 +18,32 @@ var channel = "release"
|
||||||
var goarm = ""
|
var goarm = ""
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
debug.SetGCPercent(10)
|
memoryUsage()
|
||||||
|
|
||||||
home.Main(version, channel, goarm)
|
home.Main(version, channel, goarm)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// 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.
|
||||||
|
func memoryUsage() {
|
||||||
|
debug.SetGCPercent(10)
|
||||||
|
|
||||||
|
// 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(15 * time.Second)
|
||||||
|
for {
|
||||||
|
select {
|
||||||
|
case t := <-ticker.C:
|
||||||
|
t.Second()
|
||||||
|
debug.FreeOSMemory()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}()
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue