如何在 django-sphinx 中组合 sphinxquerysets
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为什么你想在 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...