Hi, It looks like you are using the stopword filter and 'will' is a stop word, so it is removed by the the analysis chain of the field. Please, test the analysis chain in Solr Admin UI to see if this is the case.
Best, Edward Em sex, 10 de jan de 2020 21:30, chester <nam.p...@construction.com.invalid> escreveu: > I'm using solr 6.3 and am having an issue with a certain search phrase. > > When I search for the phrase "Perkins AND Will", the parsed query does not > include "Will". See debug info below. > > select?q=firmname:(Perkins%20AND%20Will) > > "debug":{ > "rawquerystring":"firmname:(Perkins AND Will)", > "querystring":"firmname:(Perkins AND Will)", > "parsedquery":"firmname:perkin", > "parsedquery_toString":"firmname:perkin", > "QParser":"LuceneQParser", > > But, if I search for "Johnson AND Perkins", then the phrase is parsed > correctly. > > select?q=firmname:(Johnson%20AND%20Perkins) > > "debug":{ > "rawquerystring":"firmname:(Johnson AND Perkins)", > "querystring":"firmname:(Johnson AND Perkins)", > "parsedquery":"+firmname:johnson +firmname:perkin", > "parsedquery_toString":"+firmname:johnson +firmname:perkin", > "QParser":"LuceneQParser", > > Can someone explain why this is and how to fix it? > > Thanks. > > > > > -- > Sent from: https://lucene.472066.n3.nabble.com/Solr-User-f472068.html >