django-sphinx

A layer for full-text search engine using Sphinx and Django
Download

django-sphinx Ranking & Summary

Advertisement

  • Rating:
  • License:
  • BSD License
  • Price:
  • FREE
  • Publisher Name:
  • David Cramer
  • Publisher web site:
  • http://code.google.com/u/dcramer/

django-sphinx Tags


django-sphinx Description

A layer for full-text search engine using Sphinx and Django django-sphinx is a layer that functions much like the Django ORM does except it works on top of the Sphinx 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.Install:To install the latest stable version:sudo easy_install djangosphinxTo install the latest development version (updated quite often):svn checkout http://django-sphinx.googlecode.com/svn/trunk/ django-sphinxcd django-sphinxsudo python setup.py installNote: You will need to install the sphinxapi.py package into your Python Path or use one of the included versions. To use the included version, you must specify the following in your settings.py file:# Sphinx 0.9.9SPHINX_API_VERSION = 0x116# Sphinx 0.9.8SPHINX_API_VERSION = 0x113# Sphinx 0.9.7SPHINX_API_VERSION = 0x107Usage:The following is some example usage:class MyModel(models.Model): search = SphinxSearch() # optional: defaults to db_table # If your index name does not match MyModel._meta.db_table # Note: You can only generate automatic configurations from the ./manage.py script # if your index name matches. search = SphinxSearch('index_name') # Or maybe we want to be more.. specific searchdelta = SphinxSearch( index='index_name delta_name', weights={ 'name': 100, 'description': 10, 'tags': 80, } )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=)results4 = queryset.exclude(my_attribute=5)results5 = queryset.count()# as of 2.0 you can now access an attribute to get the weight and similar argumentsfor 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() * extra() (passed to the queryset) * all() (does nothing) * select_related() (passed to the queryset) * group_by(field, field, field) * set_options(index='', weights={}, weights=[]) 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. Requirements: · Django · Python


django-sphinx Related Software