You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have made a search engine for my django backend using plain django filtering but I would like to boost it using ElasticSearch and here I found myself. I actually have several questions since it is the first time I do something similar.
For now I have implemented the search with fuzziness and it is working great but I would like to annotate the results with the reviews that the items have received, how can I do that? I already have the annotation working with the django filter functions, I just want to now use it with elasticsearch.
also my book object has some fields that are not used for the search but are needed later on front-end, should I still put them on the Document file? Since if I do not, then I get a serializer error.
Got AttributeError when attempting to get a value for field `status` on serializer `BookAllBasicsSerializer`.
The serializer field might be named incorrectly and not match any attribute or key on the `Hit` instance.
Original exception text was: 'Hit' object has no attribute 'status'.
Thanks in advance!
The text was updated successfully, but these errors were encountered:
Hi!
I have made a search engine for my django backend using plain django filtering but I would like to boost it using ElasticSearch and here I found myself. I actually have several questions since it is the first time I do something similar.
For now I have implemented the search with fuzziness and it is working great but I would like to annotate the results with the reviews that the items have received, how can I do that? I already have the annotation working with the django filter functions, I just want to now use it with elasticsearch.
The review model is fairly simple:
also my book object has some fields that are not used for the search but are needed later on front-end, should I still put them on the Document file? Since if I do not, then I get a serializer error.
Thanks in advance!
The text was updated successfully, but these errors were encountered: