Files
frankenphp/internal/memory/memory_others.go
Alliballibaba2 072151dfee feat: Adds automatic thread scaling at runtime and php_ini configuration in Caddyfile (#1266)
Adds option to scale threads at runtime

Adds php_ini configuration in Caddyfile
2025-02-19 20:39:33 +01:00

9 lines
154 B
Go

//go:build !linux
package memory
// TotalSysMemory returns 0 if the total system memory cannot be determined
func TotalSysMemory() uint64 {
return 0
}