django-haystack
django-haystack copied to clipboard
Modular search for Django
It is clean version of https://github.com/toastdriven/django-haystack/pull/620 Implementing more like this with filters as described in http://elasticsearch-users.115913.n3.nabble.com/Filter-on-quot-more-like-this-quot-query-td1586714.html
Many peoples need to change default analyzer's or index's for ElasticSearch (or some different options for Solr and Whoosh). This feature allow configuration mapping on fields for search backends.
Supports only base facets (no dates and query facets)
I added a test and a fix for the problem with exception on update with empty doc list (issue #811), now using SILENTLY_FAIL=True I don't get the `ValueError` exception. Reviews...
On setup, if the index needs to be created and it already exists it raises ``` Failed to add documents to Elasticsearch: (400, u'IndexAlreadyExistsException[[index-name] Already exists]') ```
...cific This bit me in the ass and took a few hours out of my day to debug, so I'm hoping it'll help others.
As mentionned in #675, querying “jehovah” on this text: > Making it worse? How can it be worse? Jehovah! Jehovah! Jehovah! > I'm warning you! If you say "Jehovah" one...
Some of the boilerplate from Django's admin changelist view changed between 1.4 and 1.5. This merges the Django change into the Haystack code. Before the fix: When searching on a...