[Django]-Django-haystack elasticsearch as backend and searchengine

1👍

I solved using https://github.com/aparo/pyes libary.

Example input:

>>> conn.index({"name":"Joe Tester", "parsedtext":"Joe Testere nice guy", "uuid":"11111", "position":1}, "test-index", "test-type", 1)

As shown in http://pyes.readthedocs.org/en/latest/manual/queries.html

Leave a comment