开发者

manage uploaded files in database or file system?

开发者 https://www.devze.com 2023-01-16 05:47 出处:网络
I\'m going to incorporate the feature for my users to upload small files which are under 2mb (jpg, gif, pdf and docs). For page loading tim开发者_开发问答es purposes and generally managing files in fu

I'm going to incorporate the feature for my users to upload small files which are under 2mb (jpg, gif, pdf and docs). For page loading tim开发者_开发问答es purposes and generally managing files in future, can you recommend is it best to have the files uploaded to the filesystem (and link to it via the database) or upload to the database directly as a BLOB?

Thanks for any help. Dan


From my point of view, file system is the best choice.

  1. Your database is not getting oversized because of BLOB fields
  2. You store only filenames as strings and you possibly can index on them (if you give meaningful names to your files)
  3. If you run out of space it is much easier to plug new HDD than migrate your DB.

The only drawback here is that someone (even you) can accidentally delete files much easier than BLOB fields.


There are pros and cons for both approaches. Keeping files in DB will make management much simpler. From another side, files stored on filesystem can be delivered more effectively, saving IO and CPU resources.

0

精彩评论

暂无评论...
验证码 换一张
取 消