I have a file "data.file" of size 32KB. I am able to do zstd compression on this file using command line
Compress Command : zstd data.file
Further, I would like to understand the compression behavior on 4K boundaries of this uncompressed file i.e apply zstd on every 4k boundary and then write the 4k compressed data to a file. i.e file needs to be compressed 8 times ( 8x4k) on each 4K boundary.
I researched and dont see any appropriate zstd CLI to do this block based
. Can someone pls suggest how to achieve this ? ( Block size and file size may vary )