postgresql - Postgres Compress data on server side and decompress on client side -
is there mechanism in postgres allows compress data on server side before sending client , decompress on client side save time needed send large amount of data through slow connection?
libpq documentation states there parameter sslcompression
when enabled allow data stream compressed. requires compatible openssl libraries used , of course ssl enabled.
depending on how you're connecting server might option. there no compression in actual protocol itself. have use separate compressing tunneling achieve that.
Comments
Post a Comment