mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2025-12-19 10:49:19 +08:00
FUSE: add configurable in memory chunk cache size
This commit is contained in:
@@ -99,7 +99,7 @@ type WebDavFile struct {
|
||||
func NewWebDavFileSystem(option *WebDavOption) (webdav.FileSystem, error) {
|
||||
return &WebDavFileSystem{
|
||||
option: option,
|
||||
chunkCache: pb_cache.NewChunkCache(),
|
||||
chunkCache: pb_cache.NewChunkCache(1000),
|
||||
}, nil
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user