开发者

SQLite suitable for concurrent reading?

开发者 https://www.devze.com 2023-01-09 04:07 出处:网络
Will an SQLite database perform well to around 50 re开发者_运维知识库ads/second without locking?

Will an SQLite database perform well to around 50 re开发者_运维知识库ads/second without locking?

I'm trying to decide whether it'd be feasible for use on a PHP website that won't get 'written' to very often - it'll be mostly reads of the same data from a small handful of tables


No problem. The concurrent reading/writing will actually be serialized by SQLite so you don't need to care about it.

For details : http://www.sqlite.org/lockingv3.html

0

精彩评论

暂无评论...
验证码 换一张
取 消