: I have been using Lucene for about a month now and trying to port the same : functionality to Solr. How do I do a wildcard query with a leading "*" : ...This is possible with Lucene if you do not use the standard query : parser. How do you do this with Solr???? This is probably very easy but I : can not find any information in docs or mailing list.
There is no easy way to change this just by modifying configuration -- you'll need to write your own request handler which uses the QueryParser of your choice. -Hoss