如何在文件系统上存储文件或图像?

发布于 2024-08-25 01:01:42 字数 71 浏览 10 评论 0原文

我正在从事项目在线文件管理,我们必须撕裂文件和图像。所以我们处于混乱状态,我们是否使用文件系统或数据库来存储文件和图像;;;;;

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

下壹個目標 2024-09-01 01:01:42

通常的方法是将大的二进制数据(例如图像)存储在文件中,并将指向它们的指针放入数据库中。通过这种方式,可以将两个世界的优点结合起来(至少在某种程度上);文件系统的文件存储效率,以及数据库的搜索/排序/查找功能。

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.

草莓酥 2024-09-01 01:01:42

让您的文件远离数据库。像这样在数据库中创建一条记录:

 primaryKey   FileName    FileDescription     OnDiskKeyName 
 ------------ ----------- ------------------- -----------------

使用 UUID 为文件指定唯一的名称,并使用人类可读的名称链接到数据库。

Keep your files out of the database. Create a record in the database like so:

 primaryKey   FileName    FileDescription     OnDiskKeyName 
 ------------ ----------- ------------------- -----------------

use a UUID to give a unique name to the file, and a link to the database with a human-readable name.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文