An open API service indexing awesome lists of open source software.

https://github.com/postgrespro/jsonbd

JSONB compression method for PostgreSQL
https://github.com/postgrespro/jsonbd

compression dictionary jsonb postgres

Last synced: 6 days ago
JSON representation

JSONB compression method for PostgreSQL

Awesome Lists containing this project

README

        

# jsonbd

JSONB compression method for PostgreSQL.

## Usage

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.