- Issue created by @mvnovick
- 🇩🇪Germany mkalkbrenner 🇩🇪
turn on search_api_solr_devel to see the resulting Solr queries and why they match a document.
I enabled the search_api_solr_devel module and examined the debugging information it provided. It looks like Solr removes stopwords from phrase searches. For example, the search for 'one or two' becomes the search for 'one ? two'. Also, grammatical stemming is applied to phrase searches as well. For example, the search for 'admitted students' becomes the search for 'admit student'. The Stopwords and Stemmer processors are not enabled in the Drupal configuration for the Solr index. Is there any way to disable stopwords and stemming in phrase searches? Theoretically, I can delete all stopwords from the Solr Schema, but I would still like to skip stopwords in multi-word searches.