On Aug 11, 2008, at 1:51 PM, swarag wrote:
When I query:
http://localhost:8983/solr/select?q=p*
I get results back, but when I query as
http://localhost:8983/solr/select?q=P*
I get no results. Is there anything wrong im doing?
Wildcard expressions are _not_ analyzed when parsed. Their case is
left as-is too. There is a switch to Lucene's query parser that
allows it to lowercase wildcard and fuzzy terms
(setLowercaseExpandedTerms), but unfortunately that switch is not
currently controllable from Solr.
One option is to have your querying client do the lowercasing for now.
Erik