INODES - 解决办法吗?
因此,我的托管服务对我的服务器(索引节点)上的 INODES 有限制。每个目录/文件 = 1 个 INODE。这可能是将来的一个问题,因为我想在我的网站中实现文件共享。理论上我不能将文件数据存储到 MySQL 数据库中,然后在用户请求下载时提取数据吗?如果这是可能的,我将如何在 PHP 中做到这一点?
MySQL 骨架:
TABLE: Files
ROWS: id, filename, data
So, my hosting service has a limit of INODES on my server (index nodes). Each directory/file = 1 INODE. This might be a problem in the future as I want to implement file-sharing into my website. Couldn't I theoretically store the data of files into a MySQL database, then pull the data when a user requests a download? If this is possible, how would I do this in PHP?
A MySQL Skeleton:
TABLE: Files
ROWS: id, filename, data
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不要仅仅因为这样的限制就开始在数据库中存储内容 - 这种方法有严重的缺点。
如果您确实希望您的数量很快就会超出提供商允许的数量,请更换提供商和/或租用私人服务器。
这个著名的问题中讨论的大部分内容:
在数据库中存储图像 - 是或不?
适用于所有文件格式。
Don't start storing stuff in the database just because of a restriction like this - there are serious downsides to the approach.
If you really expect your numbers to exceed what the provider allows anytime soon, change providers and/or rent a private server.
Most of the things discussed in this famous SO question:
Storing Images in DB - Yea or Nay?
apply to all file formats.