django-sphinx
How do I handle word forms in sphinx search
I have a sphinx server to index a mysql database for a django app. My search is working fine but my content includes medical words/phrases. So, for example, I need a search for \"dvt\" to also match a[详细]
2023-03-10 08:38 分类:问答Sphinx search in django admin
Trying to use sphinx search in django admin. Installed django-sphinx. Did as Docs tell: from djangosphinx.admin import SphinxModelAdmin[详细]
2023-03-08 07:14 分类:问答How do I give more weight to newer articles in Sphinx search?
I have a Sphinx search on a django site that is running very we开发者_开发技巧ll. It finds excellent matches for all sorts of queries. I would like to be able to give a boost in ranking to newer resul[详细]
2023-02-10 04:00 分类:问答Search app in Django
I am building search app using django & sphinx. I got the setup working but when I search I get irrelevant results. Here is what I do -[详细]
2023-01-22 10:40 分类:问答Sphinx Search Engine & Python API
I am trying to use Sphinx Search Engine with their Python API. The installation went fine. But when I use their Python API I do not get the complete result set. I only get the ID\'s? But when I use th[详细]
2023-01-16 00:03 分类:问答Django Sphinx Foreign key search
I\'m trying to create full text search on model, everything goes fine when searching TextFields but I have a problem with ForeignKey field.[详细]
2022-12-28 05:55 分类:问答Why does django-sphinx only output 20 results? How can I get the rest?
Doing a search using django-sphinx gives me results._sphinx that says there were 68 results, but when I iterate over them, I can only get at the first 20 of them.[详细]
2022-12-27 05:35 分类:问答Everything is ok, but my 127.0.0.1:8000 can't show anything, why ? I used django-sphinx
from djangosphinx.models import SphinxSearch def xx(request): queryset =File.search.query(\'test\') #return HttpResponse(queryset)#<------1[详细]
2022-12-19 19:08 分类:问答django error ,about django-sphinx
from django.db import models from djangosphinx.models import SphinxSearch class MyModel(models.Model): search = SphinxSearch() # optional: defaults to db_table[详细]
2022-12-19 05:48 分类:问答How to get field name
Recently i have implemented django-sphinx search on my website. It is working fine of each separate model.[详细]
2022-12-14 10:25 分类:问答