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
精彩评论