PostgreSQL TOAST Storage Models
The main problem TOAST solves is fundamental : postgres pages are of 8kb, and tuple must fit within that page. so what happens if you try to insert 1MB of text field ?
Without toast you would get an error: "Row too big". With toast PostgreSQL handles...
rabindranath-tiwari.com.np4 min read