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
Currently, the final query generated for Elasticsearch is directly derived from the search condition. This can lead to verbose queries, for example for search condition name: foo you get:
Currently, the final query generated for Elasticsearch is directly derived from the search condition. This can lead to verbose queries, for example for search condition
name: foo
you get:Can be at least reduced to:
We can also detect if we have exact or fuzzy matches and use
filtered
query (more examples of possible optimizations are linked).The text was updated successfully, but these errors were encountered: