sqlite并发批量插入

发布于 2024-10-17 19:57:20 字数 339 浏览 0 评论 0原文

我读到 sqlLite 更适合 SELECT 而不是插入 特别是对于并发插入,因为锁定整个数据库文件 但我想知道你的最后一点:)。

所以我想知道我是否会给自己带来麻烦 有这样的事情:

foreach($rows as $row){
    if(null === $model->check($row->id,$row->name)){
        //prepare date
        $model->insert($data);
    }
}

代码位于 gearman 工作人员内部,所以我已经 不止一个实例。

提前致谢。

I read sqlLite is better for SELECT rather than for insert
and especially for concurrency insert because locks the entire database file
but I would like to know your last point :).

So I'm wondering if I get myself into troubles
with such a thing:

foreach($rows as $row){
    if(null === $model->check($row->id,$row->name)){
        //prepare date
        $model->insert($data);
    }
}

the code is inside a gearman worker so I've
more than one instance.

Thanks in advance.

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

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

发布评论

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

评论(2

千寻… 2024-10-24 19:57:20

您可能还想查看Berkeley DB。 Berkeley DB 的 SQL API 与 SQLite 兼容,但它具有更高的并发性,因为它不需要独占数据库写入锁。由于该 API 与 SQLite 兼容,因此可以轻松测试根据 Berkeley DB 库重建应用程序。

You may also want to look at Berkeley DB. The SQL API for Berkeley DB is SQLite compatible, but it has much higher concurrency because it doesn't require exclusive database write locks. Because the API is SQLite compatible, it's an easy test to rebuild your application against the Berkeley DB library.

乙白 2024-10-24 19:57:20

对我来说完全没问题。
这是关于 sqlite 锁的精彩阅读http://www.sqlite.org/锁定v3.html

No problem at all to me.
Here's a great read regarding sqlite locks: http://www.sqlite.org/lockingv3.html

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