Toast: Where PostgreSQL hides big values
PostgreSQL's TOAST (The Oversized-Attribute Storage Technique) automatically handles large column values by compressing and storing them in a separate table, keeping the main table rows small and efficient. This mechanism is invisible to users but critical for performance when dealing with large text, JSON, or binary data.