The document discusses techniques for compressing database size in Postgres, including: 1. Using in-core block-level compression as a feature of Postgres Pro EE to shrink database size by several times. 2. The ZSON extension provides transparent JSONB compression by replacing common strings with 16-bit codes and compressing the data. 3. Various schema optimizations like proper data types, column ordering, and packing data can reduce size by improving storage layout and enabling TOAST compression.