django-haystack
django-haystack copied to clipboard
Modular search for Django
Fixed https://github.com/django-haystack/django-haystack/issues/1471 issue reported.
See comments on related commits.
Fix for #1195. Added a test to reproduce the issue but unfortunately I'am having ES ClassCastExceptions and can't dedicate more time for now. The test should reproduce the error and...
Improve search performance by filtering models directly in the query. Currently the whoosh backend is making a query per model (for selecting the available documents) and then it makes the...
This currently only works with Solr backend (>4.10). More details about interval faceting can be found at: [Solr - Interval Faceting](https://cwiki.apache.org/confluence/display/solr/Faceting#Faceting-IntervalFaceting) Example: `intervals = ['[0,100]', '(100, *]']` `sqs = SearchQuerySet()`...
This PR introduces a new `StringField` class to handle raw strings. Unlike `CharField`, `StringField` does not tokenize/analyze strings, but stores them in the index as-is. There are also faceted and...
Seems like this hasn't yet been used or tested. Fix works for me.
Currently `--age` works only for hour increments. This pull request adds the possibility to define a granularity of minutes, in addition to the default hours. Format: `` or `h` -...
This amends the model_attr resolution changes made in 2a450d81432a40c6f0f963b41295f00d7efb5fc7 so they are backward compatible. Further details can be found in 12ee43474f88878487481b856672ca38371e4388.