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.
我有一个 Silverlight 应用程序,它可以更新文档并保存它,但哪种方法更好?
将文件保存到数据库中,例如将 blob 字段保存到表中
或者
根据文件夹结构保存文件,其中包含有关文件保存到磁盘的位置的表格
还有什么?
隔离存储呢?
如果您不经常更改文件的位置,则保存到磁盘会更好。将所有内容作为 blob 存储到数据库中会迅速增加数据库的大小,从而降低系统的性能。此外,如果您同时从数据库中选择大量 blob 对象,则会消耗大量内存并降低性能。