JSONB compression method for PostgreSQL
JSONB compression method for PostgreSQL.
To use it the following patch should be applied to PostgreSQL code (git:master):
https://commitfest.postgresql.org/15/1294/
And something like this:
CREATE EXTENSION jsonbd;
CREATE TABLE t(a JSONB COMPRESSION jsonbd);
This extension is in development and not finished yet.