Tagged Questions
The django-sphinx tag has no wiki summary.
4
votes
1answer
2k views
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 ...
2
votes
1answer
288 views
Search performance of Sphinx vs. Haystack
I was wondering if anyone had or could point me in the direction of benchmark results of the performance of using Sphinx to do search vs. Haystack with a Xapian backend. I'm mainly concerned with full ...
2
votes
2answers
1k views
How do I automatically rebuild the Sphinx index under django-sphinx?
I just setup django-sphinx, and it is working beautifully. I am now able to search my model and get amazing results. The one problem is that I have to build the index by hand using the indexer ...
1
vote
2answers
383 views
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.
I'm SURE there's a way around this, ...
1
vote
2answers
44 views
where is SeparatedValuesField in my code, i used sphinx
from django.db import models
from djangosphinx import SphinxSearch
# A sample model from iBegin
class City(models.Model):
name = models.CharField(max_length=32)
aliases = ...
1
vote
1answer
1k views
Querying multiple index in django-sphinx
The django-sphinx documentation shows that django-sphinx layer also supports some basic querying over multiple indexes.
http://github.com/dcramer/django-sphinx/blob/master/README.rst
from ...
0
votes
0answers
86 views
Djangosphinx failed to read searchd response
The error is djangosphinx.models.SearchError: failed to read searchd response
(status=2613, ver=11825, len=775174445, read=75)
Does anyone know how to solve it?
...
0
votes
1answer
94 views
How to use Djangosphinx
I have installed djangosphinx, but such commend 'generate_sphinx_config' is not able to be found. And I use sphinx beta2.0.1, but what is this version number of sphinx beta2.0.1
Note: You will need ...
0
votes
1answer
172 views
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 ...
0
votes
1answer
100 views
django-sphinx BuildExcerpts
Any one get BuildExcerpts working with django-sphinx? There are a ton of posts on the django-sphinx google group with no real answers and I can't find any documentation on how to do it.
I looked ...
0
votes
3answers
245 views
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 well. It finds excellent matches for all sorts of queries. I would like to be able to give a boost in ranking to newer results. Quite often ...
0
votes
1answer
337 views
How do I get 64 bit ids to work with Sphinx search server 0.9.9 on Mac OS?
I've been using Sphinx successfully for a while, but just ran into an issue that's got me confused... I back Sphinx with mysql queries and recently migrated my primary key strategy in a way that had ...
0
votes
1answer
299 views
django-sphinx BuildExcerpts
I'm trying to use BuildExcerpts in django sphinx. My view looks something like this:
q = request.GET.get('q', '')
my_model_list = MyModel.search.query(q).set_options(passages=True, passages_opts={
...
0
votes
1answer
233 views
python sphinx documentation
Can any one tell me how can this project be used for documentation purpose http://sphinx.pocoo.org
I have successfully installed it on my CentOS machine .After installation The Readme file says to ...
0
votes
1answer
173 views
django-sphinx: SphinxClient instance has no attribute 'SetFieldWeights'
In my models, when I refer to SphinxSearch with defaults like:
from djangosphinx.models import SphinxSearch
class Blog(models.Model):
...
search = SphinxSearh()
the fulltext search works ...
0
votes
1answer
331 views
Django / Sphinx: How to query on multiple models?
I want to be able to query different models at once and get the aggregate result of the full text search. i.e. books and authors as a single list, sorted by relevance for example.
As I understand, ...
0
votes
1answer
200 views
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 -
# this is in my trial_data Model
search = ...
0
votes
1answer
186 views
Django Sphinx Text Search
I am trying out Sphinx search in my Django project. All setup done & it works but need some clarification from someone who has actually used this setup.
In my Sphinx search while indexing, I have ...
0
votes
1answer
227 views
Django sphinx works only after app restart
I've set up django-sphinx in my project, which works perfectly only for some time. Later it always returns empty result set. Surprisingly restarting django app fixes it. And search works again but ...
0
votes
1answer
213 views
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.
How can i do that? Can anyone point me to the right ...
0
votes
1answer
105 views
MySQL efficiency as it relates to the database/table size
I'm building a system using django, Sphinx and MySQL that's very quickly becoming quite large. The database currently has about 2000 rows, and I've written a program that's going to populate it with ...
0
votes
1answer
76 views
How to combine sphinxquerysets in djang-sphinx
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 ...
0
votes
1answer
125 views
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
return ...
0
votes
2answers
412 views
django error:connection to localhost;3312 failed ,i used django-sphinx
Traceback (most recent call last):
File "D:\Python25\Lib\site-packages\django\core\servers\basehttp.py", line 280, in run
self.finish_response()
File ...
0
votes
2answers
217 views
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
# If your index name does not ...
0
votes
1answer
249 views
Problem with order_by in django sphinx
I have implemented django-sphinx search in my website.
I need result set "order by end_time" but i got results oder by first "id" and then "end_time".
My conf is:
source main_event : ...
0
votes
2answers
104 views
How to get field name
Recently i have implemented django-sphinx search on my website.
It is working fine of each separate model.
But now my client requirement has changed.
To implement that functionality i need field name ...