|
|
This is a layer that functions much like the Django ORM does except it works on top of the Sphinx (http://www.sphinxsearch.com) full-text search engine.
Please Note: You will need to create your own sphinx indexes and install sphinx on your server to use this app.
There will no longer be release packages available. Please use SVN to checkout the latest trunk version, as it should always be stable and current.
svn checkout http://django-sphinx.googlecode.com/svn/trunk/ django-sphinx
2.0.0 Note: You will need to install the sphinxapi.py package into your Python Path if you are using anything other than Sphinx 0.97 (which the API is included for).
The following is some example usage:
class MyModel(models.Model):
search = SphinxSearch('my_index_name') # optional: defaults to db_table
queryset = MyModel.search.query('query')
results1 = queryset.order_by('@weight', '@id', 'my_attribute')
results2 = queryset.filter(my_attribute=5)
results3 = queryset.filter(my_other_attribute=[5, 3,4])
results4 = queryset.exclude(my_attribute=5)[0:10]
results5 = queryset.count()
# as of 2.0 you can now access an attribute to get the weight and similar arguments
for result in results1:
print result, result._sphinx
# you can also access a similar set of meta data on the queryset itself (once it's been sliced or executed in any way)
print results1._sphinxSome additional methods:
- count()
- index_on('index index index')
- extra() (passed to the queryset)
- all() (does nothing)
- select_related() (passed to the queryset)
- group_by(field, field, field)
- weights([weight, weight, weight])
The django-sphinx layer also supports some basic querying over multiple indexes. To use this you first need to understand the rules of a UNION. Your indexes must contain exactly the same fields. These fields must also include a content_type selection which should be the content_type id associated with that table (model).
You can then do something like this:
SphinxSearch('index1 index2 index3').query('hello')This will return a list of all matches, ordered by weight, from all indexes. This performs one SQL query per index with matches in it, as Django's ORM does not support SQL UNION.
