-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
I don't think that stopwords are helping us currently; they force us to add workarounds for some cases (eg, "form AN"), and standard weighting measures should ensure that common words like stopwords aren't given undue prominence. If we find that stopwords are causing a problem with ranking, we should change the weighting algorithm to one that has better compensation for common words (such as BM25f). In order not to change the existing ranking, this indexes `searchable_text` fields additionally to a `.no_stop` sub-field. The `all_searchable_text` field isn't used by the existing ranking, so just remove stopwording from that field's default analyzer.
- Loading branch information
Richard Boulton
committed
May 28, 2015
1 parent
f55006f
commit 0fe6e52
Showing
3 changed files
with
16 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters