将上传的照片保存到数据库和磁盘有何优点和缺点?
可能的重复:
在数据库中存储图像 - 是或否?
在性能方面,可扩展性等
Possible Duplicate:
Storing Images in DB - Yea or Nay?
In terms of performance, scalability, etc.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不要保存到数据库。你会后悔的。
文件系统是存储二进制文件的最佳场所。它就是为了做到这一点而构建的。
我以前曾在编写一个将文件存储在数据库中的 CMS 系统时遇到过麻烦。结果是:
一般来说,操作文件系统上的二进制文件很容易。使用像 SSMS 这样的数据库工具,这是一场噩梦。
Don't save to the DB. You will regret it.
The file system is the best place for storing binary files. It's built to do it.
I've had my fingers burned before, writing a CMS system that stored files in the DB. The result was:
Generally speaking, manipulating binary files on the file system is easy. Using DB tools like SSMS, it's a nightmare.