pgsql-gzip icon indicating copy to clipboard operation
pgsql-gzip copied to clipboard

Gzip compress and decompress for PostgreSQL

Results 2 pgsql-gzip issues
Sort by recently updated
recently updated
newest added

Potentially faster (35% - 50% improvement is typical) compression/decompression could be possible by using libdeflate, as an optional extra dependency : https://github.com/ebiggers/libdeflate (packaged in ubuntu since 20.04 or in recent...

It would be useful to add the ability to compress and decompress data in raw deflate-mode (without headers and wrapper) like the gzdeflate($string, $level, ZLIB_ENCODING_RAW) function in PHP: ``` $compressed...