sqlite并发批量插入
我读到 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可能还想查看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.
对我来说完全没问题。
这是关于 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