如何在 django-sphinx 中组合 sphinxquerysets

发布于 2024-08-28 20:36:59 字数 226 浏览 7 评论 0原文

django 中的查询集可以与管道结合使用,如下所示:

q1 = Articles.objects.filter(name="goats")
q2 = Articles.objects.filter(name='cows')

q1 = q1|q2.

Is there a way to do this for sphinxquerysets?到目前为止,我正在出局。

querysets from django can be combined with a pipe like so:

q1 = Articles.objects.filter(name="goats")
q2 = Articles.objects.filter(name='cows')

q1 = q1|q2.

Is there a way to do this for sphinxquerysets? So far, I'm striking out.

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

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

发布评论

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

评论(1

与君绝 2024-09-04 20:36:59

为什么你想在 Django 中做这样的事情?将整个查询传递给 Sphinx &让它照顾?

或者更确切地说,配置您的 Sphinx 设置以这种方式进行搜索。即打开词干分析器、打开中缀前缀搜索(取决于您的需要)等。

所以我想说的是,使用第 3 方搜索设置的主要目的之一是让它处理整个搜索负载。所以...

Why would you want to do something like this in Django? Pass the entire query to Sphinx & let it take care?

Or rather configure your Sphinx setup to search that way. i.e. switch on stemmer, switch on infixor prefix search (depending on your needs) etc.

So what I am trying to say is, one of the main purposes of using a 3rd party search setup is to let it handle the entire search load. So...

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