Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的博客越深入,我遇到的问题就越多:) 谁能告诉我保存图像的最佳方法是什么。我将数据存储在 mongodb 中,我应该在其中保存图像还是应该使用本地文件系统?谢谢
使用文件系统存储图像,释放数据库资源来服务数据。对于更大的站点图像,应该真正使用 CDN。
使用GridFS将它们存储在 MongoDB 中。这样您就不受文件大小的限制,图像可以在多个应用服务器之间轻松共享,并且图像自然会与您的 MongoDB 数据的其余部分一起备份。