What is the best way to store media files on a database?(在数据库中存储媒体文件的最佳方式是什么?)
问题描述
我想在一个数据库中存储大量的声音文件,但我不知道这是否是一个好的做法.我想知道这样做的利弊.
I want to store a large number of sound files in a database, but I don't know if it is a good practice. I would like to know the pros and cons of doing it in this way.
我也考虑过可以链接"到这些文件,但也许这会带来比解决方案更多的问题.欢迎任何这方面的经验:)
I also thought on the possibility to have "links" to those files, but maybe this will carry more problems than solutions. Any experience in this direction will be welcome :)
注意:数据库将是 MySQL.
Note: The database will be MySQL.
推荐答案
我所知道的每个存储大量大文件的系统都将它们存储在数据库的外部.您将文件的所有可查询数据(标题、艺术家、长度等)以及文件的部分路径存储在数据库中.当需要检索文件时,您提取文件的路径,在其前面添加一些文件根目录(或 URL),然后将其返回.
Every system I know of that stores large numbers of big files stores them externally to the database. You store all of the queryable data for the file (title, artist, length, etc) in the database, along with a partial path to the file. When it's time to retrieve the file, you extract the file's path, prepend some file root (or URL) to it, and return that.
因此,您将有一个位置"列,其中包含部分路径,例如a/b/c/1000",然后您将其映射到:"http://myserver/files/a/b/c/1000.mp3"
So, you'd have a "location" column, with a partial path in it, like "a/b/c/1000", which you then map to: "http://myserver/files/a/b/c/1000.mp3"
确保您有一种简单的方法将媒体数据库指向不同的服务器/目录,以防数据恢复需要.此外,您可能需要一个例程来将数据库与文件存档的内容重新同步.
Make sure that you have an easy way to point the media database at a different server/directory, in case you need that for data recovery. Also, you might need a routine that re-syncs the database with the contents of the file archive.
此外,如果您要拥有数以千计的媒体文件,请不要将它们全部存储在一个巨大的目录中 - 这是某些文件系统的性能瓶颈.相反,将它们分解为多个平衡的子树.
Also, if you're going to have thousands of media files, don't store them all in one giant directory - that's a performance bottleneck on some file systems. Instead,break them up into multiple balanced sub-trees.
这篇关于在数据库中存储媒体文件的最佳方式是什么?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:在数据库中存储媒体文件的最佳方式是什么?
- 如何将 Byte[] 插入 SQL Server VARBINARY 列 2021-01-01
- 在SQL中,如何为每个组选择前2行 2021-01-01
- 如何将 SonarQube 6.7 从 MySQL 迁移到 postgresql 2022-01-01
- 更改自动增量起始编号? 2021-01-01
- 远程 mySQL 连接抛出“无法使用旧的不安全身份验证连接到 MySQL 4.1+"来自 XAMPP 的错误 2022-01-01
- 如何使用 pip 安装 Python MySQLdb 模块? 2021-01-01
- SQL 临时表问题 2022-01-01
- 以一个值为轴心,但将一行上的数据按另一行分组? 2022-01-01
- 使用 Oracle PL/SQL developer 生成测试数据 2021-01-01
- 导入具有可变标题的 Excel 文件 2021-01-01