bugfix:delete Directory cache when filer2 delete Directory

This commit is contained in:
聂鹏 2018-07-11 21:27:25 -04:00
parent 2fd48df9d9
commit c523bc4f07

View file

@ -137,6 +137,7 @@ func (f *Filer) DeleteEntryMetaAndData(p FullPath, shouldDeleteChunks bool) (err
if len(entries) > 0 {
return fmt.Errorf("folder %s is not empty", p)
}
f.cacheDelDirectory(string(p))
}
if shouldDeleteChunks {
@ -153,6 +154,14 @@ func (f *Filer) ListDirectoryEntries(p FullPath, startFileName string, inclusive
return f.store.ListDirectoryEntries(p, startFileName, inclusive, limit)
}
func (f *Filer) cacheDelDirectory(dirpath string) {
if f.directoryCache == nil {
return
}
f.directoryCache.Delete(dirpath)
return
}
func (f *Filer) cacheGetDirectory(dirpath string) *Entry {
if f.directoryCache == nil {
return nil