Django、Xapian 和 Haystack 的 DataBaseLock 错误
我正在使用 xapian/haystack 索引模型。当我在本地计算机上测试它时,一切工作正常,但是当我尝试在服务器上保存模型时,Xapian 抛出 DatabaseLockError
Exception Type: DatabaseLockError
Exception Location: /opt/python2.6/lib/python2.6/site-packages/xapian.py in __init__, line 2886
2886: _xapian.WritableDatabase_swiginit(self,_xapian.new_WritableDatabase(*args))
我在官方 django haystack 网站上读到了有关排队的内容。这是要走的路吗?如果是,我该如何实施?
I'm indexing a model with xapian/haystack. When i test it on my local machine everything works just fine, but when i try to save a model on the server Xapian throws a DatabaseLockError
Exception Type: DatabaseLockError
Exception Location: /opt/python2.6/lib/python2.6/site-packages/xapian.py in __init__, line 2886
2886: _xapian.WritableDatabase_swiginit(self,_xapian.new_WritableDatabase(*args))
I read something on the official django haystack site about queuing. Is this the way to go, and if yes how do i implement it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
似乎对于这个 xapian 同时写入问题没有“即时”解决方案。因此,我将全 24 小时运行一个索引 cronjob,并使用 SQL 查询获取较新的内容,其中我仅获取 update_on >= now - 24h 的数据集,并将它们与 xapian 结果合并。
Seems there is no "instant" solution for this xapian simultaneous write problem. So I'll run an indexing cronjob all 24 hours and fetch the newer stuff with an SQL query, where i fetch only the data set where updated_on >= now - 24h and merge them with the xapian results.