简体   繁体   中英

What is the best way to store Binary data (images, pdf's, mp3's, videos ect) in mysql and why?

What is the best way to store Binary data (images, pdf's, mp3's, videos ect) in mysql and why? What i would love to know is how you do it(as developers) and why? Also how the big sites do it?

Thank you in advance ;-)

To store Binary data in MySQL Blob can be used: MySQL Manuel: 10.4.3. The BLOB and TEXT Types

Although if it isn't really necessary I wouldn't store binary data in a database, because the central reasons for storing data in MySQL etc. (like Join, Index, ...) can hardly be used with this data types. Blob also is degrading the overall database performance.

Perhaps you build a separate table for files where you store several aspects and a filesystem path...

In Oracle I would use a BLOB column to store such objects. That way the data integrity and security is assured in the same way as all the other data. The alternative is to use a BFILE which is a pointer to a file on the external file system - a file that may have been moved, deleted, amended or even lost when you next try to access it.

Well, I keep images on disk, I have lots and lots of them and I don't want to imagine the maintenance nightmare this could be. My database (mysql) so far is smaller than 5GB, and I'm fine with the ~50GB of jpeg files (each image has several sizes saved). Storing images in a separate database (with separate raid controller maybe) might be a good thing if done right, but I believe the system is faster storing them on disk.

I would use the database only for storing files metadata (size, MIME type, tags, etc). For the sake of data integrity and security I'd better offload handling the binary data to a specialized service such as Amazon's S3 .

Concerning the data integrity: I'd avoid overloading the DB server by performing transactions that involve large blobs. Instead, I'd suggest to store the files first and perform some periodical asynchronous 'garbage collection'.

I have never used PBMS storage engine, but it looks like a way to go:

Blob streaming

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM