drf-haystack
drf-haystack copied to clipboard
Haystack for Django REST Framework
Bumps [django](https://github.com/django/django) from 3.2.12 to 3.2.15. Commits 653a7bd [3.2.x] Bumped version for 3.2.15 release. b3e4494 [3.2.x] Fixed CVE-2022-36359 -- Escaped filename in Content-Disposition header. cb7fbac [3.2.x] Fixed collation tests on...
I see Pipfile using elasticsearch = "=2.0.0" I have a problem when using elasticsearch 5.x with docker? because elastic 2.4.1 docker isn't avalaible Is it possible update that elastic python...
In the past few years I've not been able to prioritize maintaining this library. Due to lack of time, and since I'm currently not involved in any projects using the...
```python 'default': { 'ENGINE': 'haystack.backends.elasticsearch5_backend.Elasticsearch5SearchEngine', 'URL': 'http://127.0.0.1:9200/', 'INDEX_NAME': 'article', }, 'example': { 'ENGINE': 'haystack.backends.elasticsearch5_backend.Elasticsearch5SearchEngine', 'URL': 'http://127.0.0.1:9200/', 'INDEX_NAME': 'videoad', } ``` drf-haystack query result always use `default` connection, The question is...
when I was using highlight mixin, I found that some arguments like 'page=2' were highlighted and I had no choice but rewrite the to_presentation method. Due to #126 , I...
I can search by field like `/search?is_approved=true&is_active=true` However, I need a way to sort the result by a field e.g. `/search?is_approved=true&is_active=true&order=[-date]` How to achieve this?
I'd like to use django view-based caching to set specific cache times for my .../search and .../search/facets URLs. How would I go about that with drf-haystack? I tried the following...
Wondering if it's possible to make OR queries with facets endpoints. for example - v1/search/facets/?params=name:apple,orange // returns all fruits which are either apple or orange. Regards
I am unable to use facets when trying narrow urls. Default search page with no query works and it displays facets options but facet queries via narrow url don't work...
I get the error below when I add HaystackHighlightFilter to a faceted viewset and use face url like http://127.0.0.1:8002/api/v1/search/facets/?first_name=judith¶ms=u_type_exact%3AStudent When I check the to_representation(self, instance) and print(instance.highlighted) here is the...