Hello, I'm exploring the use hdf5-rust for storing my data, but it is rather large. I've noted that hdf5 has compression filters and that there is a zlib feature flag for hdf5. Could you give me a recommendation for how to use the compression features in hd5-rust?
(Or perhaps point me to appropriate documentation =] )
Compression must be enabled at variable creation time. Have a look at DatasetCreateBuilder::deflate. You might want to set chunk sizes as appropriate for your data access pattern.
Hello, I'm exploring the use hdf5-rust for storing my data, but it is rather large. I've noted that hdf5 has compression filters and that there is a zlib feature flag for hdf5. Could you give me a recommendation for how to use the compression features in hd5-rust?
(Or perhaps point me to appropriate documentation =] )
With thanks Ciaran