Re: Wildcard searching

2012-04-12 Thread Kissue Kissue
Correction, this difference betweeen Solr admin scores and SolrJ scores happens with leading wildcard queries e.g. *edge On Thu, Apr 12, 2012 at 8:13 PM, Kissue Kissue wrote: > Hi, > > I am using the edismax query handler with solr 3.5. From the Solr admin > interface when i do a wildcard searc

Wildcard searching

2012-04-12 Thread Kissue Kissue
Hi, I am using the edismax query handler with solr 3.5. From the Solr admin interface when i do a wildcard search with the string: edge*, all documents are returned with exactly the same score. When i do the same search from my application using SolrJ to the same solr instance, only a few document

Re: Solr wildcard searching

2011-09-24 Thread Erick Erickson
er, > in the index, these words are stored in lower case: > > John -> john > Do -> do > > so, > > customer_name:Do* will not find anything. > > Ludovic. > > - > Jouve > France. > -- > View this message in context: > http://lucene.472066

Re: Solr wildcard searching

2011-09-24 Thread lboutros
hese words are stored in lower case: John -> john Do -> do so, customer_name:Do* will not find anything. Ludovic. - Jouve France. -- View this message in context: http://lucene.472066.n3.nabble.com/Solr-wildcard-searching-tp3360681p3365086.html Sent from the Solr - User mailing

Re: Solr wildcard searching

2011-09-24 Thread Erick Erickson
tomer_name:"Joh*" > Returns: No results > > Search: customer_name:"John Do*" > Returns: No results > > Search: customer_NAME:"John Doe*" > Returns: The correct "John Doe" Record" > > I feel like I'm close, only issue is when there are multiple words. > > Any advice would be appreciated. > > Thanks! > > -- > View this message in context: > http://lucene.472066.n3.nabble.com/Solr-wildcard-searching-tp3360681p3360681.html > Sent from the Solr - User mailing list archive at Nabble.com. >

Re: Solr wildcard searching

2011-09-23 Thread Doug McKenzie
se, only issue is when there are multiple words. Any advice would be appreciated. Thanks! -- View this message in context: http://lucene.472066.n3.nabble.com/Solr-wildcard-searching-tp3360681p3360681.html Sent from the Solr - User mailing list archive at Nabble.com. -- Become a Firebox Fan on

Solr wildcard searching

2011-09-22 Thread jaystang
string in quotes.) Search: customer_name:"Joh*" Returns: No results Search: customer_name:"John Do*" Returns: No results Search: customer_NAME:"John Doe*" Returns: The correct "John Doe" Record" I feel like I'm close, only issue is when there are mu