Django、Xapian 和 Haystack 的 DataBaseLock 错误

发布于 2024-08-10 18:39:23 字数 401 浏览 9 评论 0原文

我正在使用 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 技术交流群。

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

发布评论

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

评论(1

懒猫 2024-08-17 18:39:23

似乎对于这个 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.

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