mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2025-08-24 04:14:21 +08:00
webdav: cache to version specific folder
This commit is contained in:
parent
318a3d2efc
commit
76430790b9
@ -105,7 +105,10 @@ type WebDavFile struct {
|
|||||||
|
|
||||||
func NewWebDavFileSystem(option *WebDavOption) (webdav.FileSystem, error) {
|
func NewWebDavFileSystem(option *WebDavOption) (webdav.FileSystem, error) {
|
||||||
|
|
||||||
chunkCache := chunk_cache.NewTieredChunkCache(256, option.CacheDir, option.CacheSizeMB, 1024*1024)
|
cacheUniqueId := util.Md5String([]byte("webdav" + option.FilerGrpcAddress + util.Version()))[0:8]
|
||||||
|
cacheDir := path.Join(option.CacheDir, cacheUniqueId)
|
||||||
|
|
||||||
|
chunkCache := chunk_cache.NewTieredChunkCache(256, cacheDir, option.CacheSizeMB, 1024*1024)
|
||||||
return &WebDavFileSystem{
|
return &WebDavFileSystem{
|
||||||
option: option,
|
option: option,
|
||||||
chunkCache: chunkCache,
|
chunkCache: chunkCache,
|
||||||
|
Loading…
Reference in New Issue
Block a user