> Does anyone know how to apply some analyzers over a prefix
> query?
Lucene has an special QueryParser for this.
http://lucene.apache.org/java/3_0_2/api/contrib-misc/org/apache/lucene/queryParser/analyzing/AnalyzingQueryParser.html
Someone provided a patch to use it in solr. It was an attachmen
I don't believe you can. If you just need query-time transformation,
can't you just do it in your client app? If you need index-time
transformation... well, you can do that, but it's up to your schema.xml
and will of course apply to the field as a whole, not just for
termscomponent queries, be