将上传的照片保存到数据库和磁盘有何优点和缺点?

发布于 2024-11-08 13:14:41 字数 192 浏览 0 评论 0原文

可能的重复:
在数据库中存储图像 - 是或否?

在性能方面,可扩展性等

Possible Duplicate:
Storing Images in DB - Yea or Nay?

In terms of performance, scalability, etc.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

隔岸观火 2024-11-15 13:14:41

不要保存到数据库。你会后悔的。

文件系统是存储二进制文件的最佳场所。它就是为了做到这一点而构建的。

我以前曾在编写一个将文件存储在数据库中的 CMS 系统时遇到过麻烦。结果是:

  • Web 服务器和数据库之间的流量大量增加
  • 数据库性能下降
  • 数据库大小大量增加,导致备份麻烦

一般来说,操作文件系统上的二进制文件很容易。使用像 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:

  • Massive increase in traffic between the web server and the database
  • Slowdown in database performance
  • Massive increase in the size of the database, resulting in a backup headache

Generally speaking, manipulating binary files on the file system is easy. Using DB tools like SSMS, it's a nightmare.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文