Hi, my first time post here.
I would like to find a way to perform seek function both forward AND backward on a compressed gz file. I tried to use Compress::Zlib, but according to the doc it cannot seek backwards:
"Provides a sub-set of the seek functionality, with the restriction that it is only legal to seek forward in the compressed file. It is a fatal error to attempt to seek backward."
Just a little background on what i want to accomplish. I would like to use binary search on a huge compressed gz file, so therefore I would like to open up a gz file, use seek forward and backward for divide and conquer.
Any input would be greatly appreciated. Thanks.