Is there a way to whitelist AOD search terms, or eliminate terms from the submitted query?
For example, the user enters “The Paper Store”, which gets translated as the+paper+store in the query. But my webserver will time out while Lucene looks for the individual terms - and “the” could be a rather large problem.
There seems to be something wrong with parsing the search terms. According to : https://lucene.apache.org/core/2_9_4/queryparsersyntax.html a double quoted string should look for the phrase and not the individual words. It seems the quotes might be stripped from the query resulting in a search for all of the individual words.