微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

SQLite是否适合网站使用

我在sqlite 3中有一个50MB大小的数据库.所有数据库对象都是通过Web服务访问的.对于大约500个并行用户的并发在线使用,sqlite是一个不错的选择.

注意:用户将使用相同的表但不使用相同的行.每个用户只能查看/更新/删除他的数据.

sqlite usually will work great as the database engine for low to medium traffic websites (which is to say,99.9% of all websites). The amount of web traffic that sqlite can handle depends,of course,on how heavily the website uses its database. Generally speaking,any site that gets fewer than 100K hits/day should work fine with sqlite. The 100K hits/day figure is a conservative estimate,not a hard upper bound. sqlite has been demonstrated to work with 10 times that amount of traffic.

(Source)

原文地址:https://www.jb51.cc/sqlite/197663.html

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐