Re: Alphanumeric wildcard search problem

2010-09-08 Thread Erick Erickson
Ah, thanks. That reconciles our differing results. Best Erick On Wed, Sep 8, 2010 at 2:58 AM, Hasnain wrote: > > The real problem was this tag > > > text > > and I was quering like this q=r-1* instead of q=mat_nr:r-1* > so whatever fieldType I use for mat_nr, it was using "text" fieldType whic

Re: Alphanumeric wildcard search problem

2010-09-07 Thread Hasnain
The real problem was this tag text and I was quering like this q=r-1* instead of q=mat_nr:r-1* so whatever fieldType I use for mat_nr, it was using "text" fieldType which had WordDelimiterFilterFactory, hence I had to put space inorder to get it running. -- View this message in context: http:

Re: Alphanumeric wildcard search problem

2010-09-07 Thread Erick Erickson
Thanks for letting us know. What was the magic? I'm still unclear what was different between my tests and your implementation, mysteries like this make me nervous .. Thanks Erick On Mon, Sep 6, 2010 at 5:45 PM, Hasnain wrote: > > Finally got it working, thanks for your help and support > -- > V

Re: Alphanumeric wildcard search problem

2010-09-06 Thread Hasnain
Finally got it working, thanks for your help and support -- View this message in context: http://lucene.472066.n3.nabble.com/Alphanumeric-wildcard-search-problem-tp1393332p1429315.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: Alphanumeric wildcard search problem

2010-09-06 Thread Hasnain
Hi Erik, So I took your advice and started fresh with solr, got my self latest copy of solr and started adding things gradually in configuration files. Unfortunately, this still doesnot work. But, I realized that searching for q=r-1* didnt return any results but when I query like this q=r

Re: Alphanumeric wildcard search problem

2010-09-02 Thread Erick Erickson
All I can say is that I just tried it with the following definitions and it works as expected. That is: http://localhost:8983/solr/select/?q=eoe:R-1*&version=2.2&start=0&rows=10&indent=on returns nothing (casing i

Re: Alphanumeric wildcard search problem

2010-09-02 Thread Hasnain
Erick, I have checked with lowercasing, and yes there are Items by this name. Im not getting anywhere with this, tried many things and Im really perplexed. any other suggestion? Oh dear. Wildcard queries aren't analyzed, so I suspect it's a casing issue. Try two things: 1> searc

Re: Alphanumeric wildcard search problem

2010-09-01 Thread Erick Erickson
Oh dear. Wildcard queries aren't analyzed, so I suspect it's a casing issue. Try two things: 1> search for r-1* 2> look in your index and be sure the actual terms are there as you expect. HTH Erick On Wed, Sep 1, 2010 at 4:35 PM, Hasnain wrote: > > Thankyou for your suggestions > > when before

Re: Alphanumeric wildcard search problem

2010-09-01 Thread Hasnain
Thankyou for your suggestions when before removing the wordDelimiterFilterFactory, the results for q=R-* returned perfect results but not for q=R-1*, also after removing wordDelimiterFilterFactory, it didnt bring me results for q=R-* the results before removing wordDelimiterFilterFactory using d

Re: Alphanumeric wildcard search problem

2010-08-31 Thread Erick Erickson
Really look at the analysis page in solr admin for how your analyzer chain handles things, or you'll spend time until you're really old having trouble :). Here's what I see on a quick scan: > StandardTokenizer tries to, among other things, preserve email addresses. The kinds of strings you're wor