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
Adding SnowballPorterFilterFactory to solr search indexing.
On localhost, cancelling out of lando rebuild then running landocommand served to re-index the database.
(lando destroy deleted the database.)
EnglishMinimalStemFilterFactory reduces English plural words to singular words for search purposes. We want a more aggresive approach, so we're no longer using it.
Adding Solr token filter factories
EnglishPossessiveFilterFactory removes English possessives from search words. The word "cat's" becomes "cat" etc. in a search.
LowerCaseFilterFactory enables case-insensitive searching. It converts uppercase letters to lowercase, while leaving numbers and other characters unchanged.
SnowballPorterFilterFactory reduces search words to their root form using Snowball stemming algorithms. This is the big change that we want, the one that allows us to search for "Nielsen" and see "NielsenIQ" in the search results. It also reduces English plural words to singular words, so we don't lose any functionality by removing EnglishMinimalStemFilterFactory.
NGramFilterFactory splits up search words to support partial word matching. Adding it lets us search "IQ" and get "NielsenIQ" even though it's the second half of the word. We can also search "ielsenI" for example and see the "NielsenIQ" data set in the search results.
TrimFilterFactory removes leading and trailing whitespace from search words.
This file contains hidden or 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
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Adding SnowballPorterFilterFactory to solr search indexing.
On localhost, cancelling out of lando rebuild then running landocommand served to re-index the database.
(lando destroy deleted the database.)