-
Notifications
You must be signed in to change notification settings - Fork 24.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Expose duplicate removal in the completion suggester #23364
Labels
>enhancement
:Search Relevance/Suggesters
"Did you mean" and suggestions as you type
Team:Search Relevance
Meta label for the Search Relevance team in Elasticsearch
Comments
mikemccand
added
the
:Search Relevance/Suggesters
"Did you mean" and suggestions as you type
label
Feb 25, 2017
Hello @mikemccand, Will this option be available for the context suggester too? I index document question with a category property so I use the context suggester to suggest question when new documents are created and filtered by category so the completion suggester would not be enough for my usecase. |
jimczi
added a commit
to jimczi/elasticsearch
that referenced
this issue
Sep 4, 2017
This change exposes the duplicate removal option added in Lucene for the completion suggester with a new option called `skip_duplicates` (defaults to false). This commit also adapts the custom suggest collector to handle deduplication when multiple contexts match the input. Closes elastic#23364
jimczi
added a commit
that referenced
this issue
Sep 7, 2017
This change exposes the duplicate removal option added in Lucene for the completion suggester with a new option called `skip_duplicates` (defaults to false). This commit also adapts the custom suggest collector to handle deduplication when multiple contexts match the input. Closes #23364
jimczi
added a commit
that referenced
this issue
Sep 11, 2017
This change exposes the duplicate removal option added in Lucene for the completion suggester with a new option called `skip_duplicates` (defaults to false). This commit also adapts the custom suggest collector to handle deduplication when multiple contexts match the input. Closes #23364
javanna
added
the
Team:Search Relevance
Meta label for the Search Relevance team in Elasticsearch
label
Jul 12, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
>enhancement
:Search Relevance/Suggesters
"Did you mean" and suggestions as you type
Team:Search Relevance
Meta label for the Search Relevance team in Elasticsearch
Lucene 6.5.0 adds an option to the NRT document suggester to efficiently remove duplicates, and it's included in the last snapshot upgrade (#23362).
This should fix #22912, but I won't have time to work on it.
The text was updated successfully, but these errors were encountered: