django-oscar-elasticsearch
django-oscar-elasticsearch copied to clipboard
Search app for oscar using elasticsearch
Wagtail has a very nice querycompiler implementation that allows orm queries to be compiled to elasticsearch queries. Instead of duplicating code from another project by copying, I just added the...
Wagtail only uses elasticsearch in the backend (which is VERY nice actually!). There is no good functionality for implementing frontend search. The code for the frontend search bar should be...
There is an open ticket in wagtail requesting filtering on non-database fields. This feature is implemented in the search backends overrides in django-oscar-elasticsearch. Extract this feature and contribute to wagtail...
Hi, I installed django-oscar-elasticsearch with pip and then added the settings to my settings.py file as described in the README.md file. But when I tried to run migrate I get...
I'm trying to update my Oscar store to user this instead of Haystack. On my site I have: OSCAR_SEARCH_FACETS = { "fields": OrderedDict( [ ("category", {"name": "Category", "field": "category", 'options':...