Is PyFilesystem's Zip Filesystem indexed? Is it performant for random access reads?

84 Views Asked by At

Looking at PyFilesystem's zip filesystem. I want to know if the filesystem is reasonably performant for random access reads with large numbers of files (millions+).

1

There are 1 best solutions below

0
On BEST ANSWER

ZipFS is a thin wrapper over Python's zip support. Random access read will be fast.