Re: Problem with Wildcard searches in Solr

2010-07-13 Thread imranak
Thank you so much guys. You solved my problem :) :) The problem was I was using stemming, I removed that it works perfectly now. -- View this message in context: http://lucene.472066.n3.nabble.com/Problem-with-Wildcard-searches-in-Solr-tp961448p963744.html Sent from the Solr - User mailing lis

Re: Problem with Wildcard searches in Solr

2010-07-13 Thread Rebecca Watson
hi, sorry realised i had a typo: > of course, non of this is going to sort out trying to match against the query > "co?mput?r" because you've probably stemmed "computer" to "comput" or > something > at index time -- but if you add in a copyfield to an extra field that > isn't stemmed > at query

Re: Problem with Wildcard searches in Solr

2010-07-13 Thread Rebecca Watson
Hi, earlier this week i started messing with getting wildcard queries to be analysed i've got some weird analysers doing stemming/lowercasing and writing in the same rules into a custom queryparser didn't seem logical given i just want the analysers to apply as they do at index time i ca

RE: Problem with Wildcard searches in Solr

2010-07-13 Thread Bastian Spitzer
! -Ursprüngliche Nachricht- Von: imranak [mailto:imranak...@gmail.com] Gesendet: Montag, 12. Juli 2010 23:55 An: solr-user@lucene.apache.org Betreff: RE: Problem with Wildcard searches in Solr Hi, Thanks for you response. The dismax query parser doesn't support it but I heard the edismax parser sup

Re: Problem with Wildcard searches in Solr

2010-07-12 Thread Yonik Seeley
On Mon, Jul 12, 2010 at 4:39 PM, imranak wrote: > A general search like 'computer' returns results but 'com*er' doesn't return > any results. This is due to issues with wildcards and stemming. "computer" is indexed and searched as "comput"... but it's not generally possible to stem wildcarded ter

RE: Problem with Wildcard searches in Solr

2010-07-12 Thread Markus Jelsma
ubject: RE: Problem with Wildcard searches in Solr Hi, Thanks for you response. The dismax query parser doesn't support it but I heard the edismax parser supports all kinds of wildcards. Been trying it out but without any luck. Could someone please help me with that. I'm unable to mak

RE: Problem with Wildcard searches in Solr

2010-07-12 Thread imranak
Hi, Thanks for you response. The dismax query parser doesn't support it but I heard the edismax parser supports all kinds of wildcards. Been trying it out but without any luck. Could someone please help me with that. I'm unable to make leading and in-the-middle wildcard searches work. Thanks. I

RE: Problem with Wildcard searches in Solr

2010-07-12 Thread Markus Jelsma
Hi,   The DisMaxQParser does not support wildcards in its q parameter [1]. You must use the LuceneQParser instead. AFAIK, in DisMax, wildcards are part of the search query and may get filtered out in your query analyzer.   [1]: http://wiki.apache.org/solr/DisMaxRequestHandler#q   Cheers,