PostgreSQL TOAST Storage Models
Feb 19 路 4 min read 路 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...
Join discussion


