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.
我正在开发用于显示视频,我需要将视频保存在 Sql Server 上并在我的视图中使用 Html5 显示它们,是否可以这样做?它与下载文件有什么不同吗?它会在我的服务器上造成很多开销吗?谢谢
如果您决定使用 SQL 来存储它,那么您可能需要考虑 SQL Server FileStream 存储选项(仅在 SQL 2008+ 中可用)。不过,在 Entity Framework 中对此的支持很少,因此您可能希望在 .NET 中使用类似 SqlFileStream 对象的东西(假设您使用的是 .net)
这是一篇关于这个主题的不错的文章。但同样,我强烈建议不要将其存储在数据库中。
http://lennilobel.wordpress.com/2011/08/22/using-sqlfilestream-in-c-to-access-sql-server-filestream-data/