django-elasticsearch-dsl-drf
django-elasticsearch-dsl-drf copied to clipboard
Integrate Elasticsearch DSL with Django REST framework.
After cloning the project, first line of django_elasticsearch_dsl_drf_demo_installer.sh: `wget -O django_elasticsearch_dsl_drf_demo_installer.tar.gz https://github.com/barseghyanartur/django-elasticsearch-dsl-drf/archive/stable.tar.gz ` Resolving github.com (github.com)... 140.82.121.3 Connecting to github.com (github.com)|140.82.121.3|:443... connected. HTTP request sent, awaiting response... 302 Found Location:...
Hi there, Assuming there will be an OpenSearch equivalent to the [Django Elasticsearch DSL](https://pypi.org/project/django-elasticsearch-dsl/) library, I'm wondering if the maintainers of this project will consider supporting [OpenSearch](https://github.com/opensearch-project/OpenSearch) in addition to...
**Questions** Can someone please explain where we get the plural for book, books? From the docs: https://django-elasticsearch-dsl-drf.readthedocs.io/en/latest/quick_start.html#full-database-sync: search_indexes/signals.py ``` @receiver(post_save) def update_document(sender, **kwargs): """Update document on added/changed records. Update Book...
Allow to filter a single field (range) on multiple values using `should` (instead of `must`). This should be valid for: - `filter` - `post_filter`
Thanks for the neat library! Is there any support for the [search_after](https://www.elastic.co/guide/en/elasticsearch/reference/7.5/search-request-body.html#request-body-search-search-after) operator? I am working with an index of about 5M records, and my search hits a roadblock after...
**Is your feature request related to a problem? Please describe.** When I am using NestedFilteringFilterBackend, I just realize that it does not support "default_lookup" like FilteringFilterBackend. **Describe the solution you'd...
**Questions** Hi @barseghyanartur. First, thanks for this great package. It has been extremely useful. I was unable to find an answer to my question in the docs or by examining...
SuggesterFilterBackend not returning SerializerMethod responses. it is perfectly ok with CompoundSearchFilterBackend. but I am facing the issue with suggesters. Here is my document.py `@registry.register_document class BrandDocument(Document): code = fields.TextField() name...
Make it possible to specify search on sub-field (not only on main field).
## Test Against Python 3.10 and Django 4.0 ### Adds: - Test Against Python 3.10 - Test Against Django 4.0 - Update code to support Django 4.0 ### Fixes: -...