缓存策略默认不启用MMAP

This commit is contained in:
刘祥超
2024-05-01 12:51:31 +08:00
parent 97c6776809
commit c3c3261579

View File

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