xapian-haystack is a backend for use with the Django Haystack search API and the Xapian search engine.
- More information on Haystack can be found here: haystacksearch.org.
- More information on Xapian can be found here: xapian.org.
- Python 2.4 (May work with 2.3, but untested)
- Django 1.0.x
- Django-Haystack 1.1.X (If you wish to use django-haystack 1.0.X, please use xapian-haystack 1.0.X)
- Xapian 1.0.13+ (May work with earlier versions, but untested)
- Due to an issue with mod_python possibly causing deadlocks with Xapian (issue #364), when Python is not invoked through the "main interpreter", mod_python is not supported with xapian-haystack. It may work, with some tweaking, but your mileage will vary.
- Because Xapian does not support simultaneous
WritableDatabase
connections, it is strongly recommended that users take care when usingRealTimeSearchIndex
. If there is a possibility of simultaneous write attempts on the database, keep in mind that they are likely to trigger multiple reindex attempts on the search index. If this occurs an DatabaseLockError exception will be raised by Xapian. To avoid this, either setWSGIDaemonProcess processes=1
or use some other way of ensuring that there are not multiple attempts to write to the indexes. Alternatively, useSearchIndex
and a cronjob to reindex content at set time intervals (sample cronjob can be found here) or derive your ownSearchIndex
to implement some other form of keeping your indexes up to date. A good alternative is to use a QueuedSearchIndex.
Copy or symlink
xapian_backend.py
intohaystack/backends/
or install it by running one of the following commands:python setup.py install
or
pip install xapian-haystack
or
easy_install xapian-haystack
Add
HAYSTACK_XAPIAN_PATH
tosettings.py
Set
HAYSTACK_SEARCH_ENGINE
toxapian
As well as the flags described here, the xapian backend includes and additional HAYSTACK_XAPIAN_FLAGS variable to further configure how indexes are stored and manipulated. By default, this value is set to FLAG_PHRASE | FLAG_BOOLEAN | FLAG_LOVEHATE | FLAG_WILDCARD | FLAG_PURE_NOT. See the Xapian documentation for further explanation of the available Xapian.QueryParser flags.
The easiest way to test xapian-haystack is to symlink or copy the xapian_haystack/tests
folder into the haystack/tests folder so that your source tree resembles this layout:
django-haystack | +---haystack | | | +---backends | | | +---solr_backend.py | +---whoosh_backend.py | +---xapian_backend.py +---tests | +---core | | | +---[...] | +---[...] | +---xapian_tests | | | +---[...] | +---xapian_settings.py
Once this is done, the tests can be executed in a similar fashion as the rest of the Haystack test-suite:
django-admin.py test xapian_tests --settings=xapian_settings
The latest source code can always be found here: github.com/notanumber/xapian-haystack
xapian-haystack is maintained by David Sauve, and was originally funded by Trapeze.
xapian-haystack is Copyright (c) 2009-2011 David Sauve, Trapeze. It is free software, and may be redistributed under the terms specified in the LICENSE file.
Feel free to open an issue here: github.com/notanumber/xapian-haystack/issues Alternatively, ask questions on the django-haystack mailing list or irc channel.