SQLite适合并发读吗?

发布于 2024-09-10 20:52:10 字数 109 浏览 3 评论 0原文

在没有锁定的情况下,SQLite 数据库的性能是否能达到每秒 50 次读取左右?

我正在尝试确定它是否可以在不会经常“写入”的 PHP 网站上使用 - 它主要是从一小部分表中读取相同的数据

Will an SQLite database perform well to around 50 reads/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

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

乞讨 2024-09-17 20:52:10

没问题。并发读/写实际上会被 SQLite 序列化,所以你不需要关心它。

详细信息:http://www.sqlite.org/lockingv3.html

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文