mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-01-19 02:48:24 +00:00
filer: cache "/etc" filder small files to filer store
This commit is contained in:
parent
ac22f1dd26
commit
606051cc79
|
@ -236,7 +236,8 @@ func (fs *FilerServer) uploadReaderToChunks(w http.ResponseWriter, r *http.Reque
|
|||
break
|
||||
}
|
||||
}
|
||||
if chunkOffset < fs.option.CacheToFilerLimit {
|
||||
|
||||
if chunkOffset < fs.option.CacheToFilerLimit || strings.HasPrefix(r.URL.Path, filer.DirectoryEtc) && chunkOffset < 4*1024 {
|
||||
smallContent = content
|
||||
}
|
||||
return fileChunks, md5Hash, chunkOffset, nil, smallContent
|
||||
|
|
Loading…
Reference in a new issue