compress
:
Z compression algorithm (http://www.zlib.net/) can be used to
deflate the data stored in the GDS file. "ZIP" option is equivalent
to "ZIP.default". "ZIP.fast", "ZIP.default" and "ZIP.max" correspond
to different compression levels. To support efficient random access of Z stream, "ZIP_RA",
"ZIP_RA.fast", "ZIP_RA.default", "ZIP_RA.max" or "ZIP_RA.none" should
be specified. "ZIP_RA" option is equivalent to "ZIP_RA.default:256K".
The block size can be specified by following colon, and "16K", "32K",
"64K", "128K", "256K", "512K", "1M", "2M", "4M" and "8M" are allowed,
like "ZIP_RA:64K". The compression algorithm tries to keep each
independent compressed data block to be about of the specified block
size, like 64K.
LZ4 fast lossless compression algorithm is allowed when
compress="LZ4"
(http://code.google.com/p/lz4/). Three
compression levels can be specified, "LZ4.fast" (LZ4 fast mode),
"LZ4.hc" (LZ4 high compression mode), "LZ4.max" (maximize the
compression ratio). The block size can be specified by following colon,
and "64K", "256K", "1M" and "4M" are allowed according to LZ4 frame
format. "LZ4" is equivalent to "LZ4.hc:256K".
To support efficient random access of LZ4 stream, "LZ4_RA",
"LZ4_RA.fast", "LZ4_RA.hc", "ZIP_RA.max" or "LZ4_RA.none" should
be specified. "LZ4_RA" option is equivalent to "LZ4_RA.hc:256K".
The block size can be specified by following colon, and "16K", "32K",
"64K", "128K", "256K", "512K", "1M", "2M", "4M" and "8M" are allowed,
like "LZ4_RA:64K". The compression algorithm tries to keep each
independent compressed data block to be about of the specified block
size, like 64K.