django-haystack icon indicating copy to clipboard operation
django-haystack copied to clipboard

Modular search for Django

Results 158 django-haystack issues
Sort by recently updated
recently updated
newest added

Adding EnergySage which has been using django+haystack+solar since 2012 to power the supplier search feature.

instead of checking for an `__iter__` attribute, which Django 1.9+ includes in `LazyObject`s that are not necessarily iterable. Fixes #1662.

This PR fixes https://github.com/django-haystack/django-haystack/issues/1481 and https://github.com/django-haystack/django-haystack/issues/320 Pagination passes start_offset and end_offset to simple backend, but these values where not used at all. ALso the entire queryset was evaluated by len(qs)...

updated solr backend

The Solr backend supported only `text_en` for `CharField` which is not appropriate for some use-cases. You can now derive a custom Field with a get_field_type method which delivers the required...

Example how to use `username` and `password` in case of using Solr's Basic Authentication Plugin

``` python2.7/site-packages/haystack/query.py” in count 522. return len(self) Exception Type: ValueError at /search/ Exception Value: __len__() should return >= 0 Request information: USER: AnonymousUser ```

- expose a new option `ANALYZER`, which enable to replace default analyzer - so we can replace default StemmingAnalyzer with a configured analyzer, like `jieba.analyze.ChineseAnalyzer`. ```python HAYSTACK_CONNECTIONS = { 'default':...

This is a backend for SolrCloud with ZooKeeper, based on pysolr. The new backend is extension of solr only just that it changes the way conn is made. Hence the...

Some objects have an `__iter__` method even though they are not iterable - `SimpleLazyObject` for ex. # Hey, thanks for contributing to Haystack. Please review [the contributor guidelines](https://django-haystack.readthedocs.io/en/latest/contributing.html) and confirm...