Blob Storage Patterns in MySQL
This note covers the three main approaches to storing binary data alongside MySQL — inline BLOBs, external file references, and hybrid patterns — with specific …
TL;DR: BLOB columns work for small objects under 1MB. Beyond that, store on disk and keep a pointer. The …