liberation / django-elasticsearch

Simple wrapper around elasticsearch-py to index/search a django Model.
MIT License
211 stars 73 forks source link

convert EsQueryset result to django Queryset? #40

Closed LennyLip closed 8 years ago

LennyLip commented 8 years ago

I want search via elasticsearch, but does not want to deserealize objects from elastic, but use it from database.

Is subj is possible?

LennyLip commented 8 years ago

i'm think, its only possible via pk__in filter , because SQL query in django Queryset does not know how to filter by returned elastic objects.

So.. I think, i need to use Postgres SQL FTS. Close issue, if i'm right.