SQLite是否适合网站使用

前端之家收集整理的这篇文章主要介绍了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.f2er.com/sqlite/197663.html

猜你在找的Sqlite相关文章