如何在文件系统上存储文件或图像?
我正在从事项目在线文件管理,我们必须撕裂文件和图像。所以我们处于混乱状态,我们是否使用文件系统或数据库来存储文件和图像;;;;;
I am working on project -online file management where we have to tore file and images.so we are in confusion state that whether we use file system or database to store file and images;;;;;
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
通常的方法是将大的二进制数据(例如图像)存储在文件中,并将指向它们的指针放入数据库中。通过这种方式,可以将两个世界的优点结合起来(至少在某种程度上);文件系统的文件存储效率,以及数据库的搜索/排序/查找功能。
An usual approach is to store big binary data (e.g. images) in files, and put pointers to them in a database. This way the best of both worlds can be combined (to a degree, at least); file system's efficiency of file storage, and database's search / sort / lookup capabilities.
让您的文件远离数据库。像这样在数据库中创建一条记录:
使用 UUID 为文件指定唯一的名称,并使用人类可读的名称链接到数据库。
Keep your files out of the database. Create a record in the database like so:
use a UUID to give a unique name to the file, and a link to the database with a human-readable name.