缓存策略默认不启用MMAP

This commit is contained in:
GoEdgeLab
2024-05-01 12:51:31 +08:00
parent 35d782a539
commit 26efc2ba34

View File

@@ -22,7 +22,7 @@ type HTTPFileCacheStorage struct {
func NewHTTPFileCacheStorage() *HTTPFileCacheStorage {
return &HTTPFileCacheStorage{
EnableMMAP: true,
EnableMMAP: false,
}
}