Skip to main content

Extended haystack backend for Elasticsearch

Project description

https://badge.fury.io/py/django-haystack-es.svg https://travis-ci.org/tehamalab/django-haystack-es.svg?branch=master https://codecov.io/gh/tehamalab/django-haystack-es/branch/master/graph/badge.svg

Extended Haystack backend for Elasticsearch 5.

Quickstart

Install Django Haystack ES:

pip install django-haystack-es

Add haystack_es.ElasticsearchSearchEngine to your HAYSTACK_CONNECTIONS engine in settings.py

Example

HAYSTACK_CONNECTIONS = {
    'default': {
        'ENGINE': 'haystack_es.backends.Elasticsearch5SearchEngine',
        # ...
    }
}

Define your indexes using haystack_es.indexes instead of haystack.indexes.

Example

# myapp/search_indexes.py

from haystack_es import indexes
from myapp.models import MyModel


class MyModelIndex(indexes.SearchIndex, indexes.Indexable):
    text = indexes.CharField(document=True, use_template=True)
    # ...

If you want to utilize additional SearchQuerySet methods use haystack_es.query.SearchQuerySet instead of haystack.query.SearchQuerySet.

Example

from haystack_es.query import SearchQuerySet

sqs = SearchQuerySet().filter(content='some query')
sqs.boost_fields({'name': 2, 'some_field': 1.5, 'another_field': 1})
sqs.facet('some_field')
# ...

Running Tests

Does the code actually work?

source <YOURVIRTUALENV>/bin/activate
(myenv) $ pip install tox
(myenv) $ tox

Credits

Based on

Tools used in rendering this package:

History

0.1.0 (2017-07-27)

  • First release on PyPI.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-haystack-es-0.2.0.tar.gz (13.4 kB view hashes)

Uploaded Source

Built Distribution

django_haystack_es-0.2.0-py2.py3-none-any.whl (18.2 kB view hashes)

Uploaded Python 2 Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page