Sean Purcell

Results 4 comments of Sean Purcell

Here's an overview of our current thoughts on how to implement this, any feedback is appreciated! Splittable/Seekable Format ========================== A splittable and/or seekable Zstandard format could be useful in a...

I'm not sure no flags is the best option, it leaves very little room to expand. Potential flags I can think of currently: - Ability to have a constant block...

I've created a first [round implementation](https://github.com/iburinoc/zstd/tree/splittable/contrib/seekable_format). The format description is [here](https://github.com/iburinoc/zstd/blob/splittable/contrib/seekable_format/zstd_seekable_compression_format.md), comments/feedback is appreciated. As for the API, the planned compression API looks like this: ``` /*===== Seekable compressor management...

@adamkennedy The seek table itself won't be split up though, and it's not hard to traverse the seek table to convert it into a direct lookup to determine what data...