Blob 的托管本地存储
如今的普遍共识似乎是,不要将二进制大对象存储在关系数据库中,因为它并没有真正针对此类事情进行优化,而是将其放入专用的存储引擎中。
任何人都可以为 .Net 平台提出一个类似于 Microsoft Azure Blob 存储引擎的解决方案,但保留在组织本地吗?
The general consensus these days seems to be that you do not store binary large objects in your relational database, as its not really optimised for that sort of thing, and instead put it into a dedicated storage engine.
Can anyone suggest a solution for the .Net platform, along the lines of the Microsoft Azure Blob Storage engine, but kept local to the organisation?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 Sql Server 2008 中,具有管理数据库中的 blob 信息的功能。它确实将其存储在文件系统上,因此您可以两全其美。
In Sql Server 2008 there is functionality to administrate blob information in the database. It really stores it on the file system, so you get the best of both worlds.