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
- Host: GitHub
- URL: https://github.com/postgrespro/jsonbd
- Owner: postgrespro
- Created: 2017-10-25T14:14:51.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-02-12T16:45:00.000Z (about 7 years ago)
- Last Synced: 2025-04-24T10:48:41.131Z (7 days ago)
- Topics: compression, dictionary, jsonb, postgres
- Language: C
- Homepage:
- Size: 76.2 KB
- Stars: 10
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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.