# jsonbd **Repository Path**: mirrors_postgrespro/jsonbd ## Basic Information - **Project Name**: jsonbd - **Description**: JSONB compression method for PostgreSQL - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-19 - **Last Updated**: 2026-03-21 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## 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.