We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Ensure that Elastic Search is performing basic text processing, such as:
The text was updated successfully, but these errors were encountered:
We're using the default standard analyzer. According to the documentation:
standard
It splits the text on word boundaries, as defined by the Unicode Consortium, and removes most punctuation. Finally, it lowercases all terms.
We could switch to the english analyzer, which performs stemming and stopwords removal. It would then handle plurals accordingly.
english
We need to reindex to apply these changes.
Sorry, something went wrong.
Enables new experiments
074ae82
This refs bst-mug#107, bst-mug#82 and bst-mug#70.
English stemming worsened results form 0,7693 to 0,6884.
It could still benefit from #97, however.
michelole
No branches or pull requests
Ensure that Elastic Search is performing basic text processing, such as:
The text was updated successfully, but these errors were encountered: