为什么图像板脚本不使用数据库?
当我下载了两个 imageboard php 脚本时,我感到非常惊讶。没有与数据库的连接,线程和帖子被列为文件和文件夹。这种方式比标准 mysql 数据库连接更快还是还有其他原因?
I was very surprised when downloaded two imageboard php scripts. There is no connection to database, threads and posts are listed as files and folders. Is this way faster than standard mysql database connection or there is another reason?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
有两个因素导致了这一点。 1) 图像板的首要目的是保存图像,而图像在存储在数据库中时效果不佳。 2)图像板中的线程是严格线性的,因此简单的单调文件名方案足以区分它们。
Two factors lead to this. 1) The number one purpose of imageboards is to hold images, and images don't do well when stored in a database. 2) Threads in an imageboard are strictly linear, therefore a simple monotonic filename scheme suffices to distinguish them.