datenlord
datenlord copied to clipboard
Global cache cannot handle file with same name
Current global cache is a hashmap. key is file name, value is cached data. https://github.com/datenlord/datenlord/blob/master/src/async_fuse/memfs/cache/mod.rs#L39 It cannot handle files with same name.
Consider using global unique id as key.