Replies: 1 comment 2 replies
-
You mean, to have a separate file per chunk or some kind of file index? It could of course be done, but would require some work. |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
The CachingFileSystem uses MMapCache to cache parts of files. This works beautifully on filesystems that support sparse files to only store the parts of the file that have been requested. However, on filesystems without sparse file support, mmap does not allow for any efficient use of disk space.
Could the CachingFileSystem use a cache like KnownPartsOfAFile or Blockcache to cache data on filesystems without sparse file support to allow for more efficient use of disk space?
My use case is caching on a FAT32/NTFS filesystem.
Beta Was this translation helpful? Give feedback.
All reactions