Re: Simple Wildcard Search Question

2009-12-18 Thread Erick Erickson
ndernam" > > but no results?! > > -- > View this message in context: > http://old.nabble.com/Simple-Wildcard-Search-Question-tp26747482p26842359.html > Sent from the Solr - User mailing list archive at Nabble.com. > >

Re: Simple Wildcard Search Question

2009-12-18 Thread QBasti
9 andernam" but no results?! -- View this message in context: http://old.nabble.com/Simple-Wildcard-Search-Question-tp26747482p26842359.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: Simple Wildcard Search Question

2009-12-17 Thread Erick Erickson
uot;/> > > protected="protwords.txt"/> > > > > > ignoreCase="true" expand="true"/> > words="stopwords.txt"/> >generateNumberParts="1" catenateWords="0" catenateNumbers="0" > catenateAll="0" splitOnCaseChange="1"/> > > protected="protwords.txt"/> > > > > > -- > View this message in context: > http://old.nabble.com/Simple-Wildcard-Search-Question-tp26747482p26834096.html > Sent from the Solr - User mailing list archive at Nabble.com. > >

Re: Simple Wildcard Search Question

2009-12-17 Thread QBasti
t be possible, if it finds a match? here's the config (with WordDelimiterFactory still on:) hope it's not to long -- View this message in context: htt

Re: Simple Wildcard Search Question

2009-12-14 Thread Erick Erickson
cant I use the wildcard expression? > -- > View this message in context: > http://old.nabble.com/Simple-Wildcard-Search-Question-tp26747482p26776651.html > Sent from the Solr - User mailing list archive at Nabble.com. > >

Re: Simple Wildcard Search Question

2009-12-14 Thread QBasti
text: http://old.nabble.com/Simple-Wildcard-Search-Question-tp26747482p26776651.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: Simple Wildcard Search Question

2009-12-12 Thread QBasti
it says, the query "name0*" gets analyzed into "name" and "0" without the *. Is that the problem, that with my query "name0*" he is really searching for "name0" which, doesn't exist? -- View this message in context: http://old.nabble.com/Sim

Re: Simple Wildcard Search Question

2009-12-11 Thread Erick Erickson
hile indexing: > W > -- > View this message in context: > http://old.nabble.com/Simple-Wildcard-Search-Question-tp26747482p26748588.html > Sent from the Solr - User mailing list archive at Nabble.com. > >

Re: Simple Wildcard Search Question

2009-12-11 Thread QBasti
Hey, well, the field is stored as well as indexed, and these are the filters that are used while indexing: W -- View this message in context: http://old.nabble.com/Simple-Wildcard-Search-Question-tp26747482p26748588.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: Simple Wildcard Search Question

2009-12-11 Thread Erick Erickson
x27;m getting the right result. > But since, i think, SOLR stores the string also under "name01", why don't a > get any result when searching for "name0*" oder "name0?" > > thanks for any help > QBasti > -- > View this message in context: > http://old.nabble.com/Simple-Wildcard-Search-Question-tp26747482p26747482.html > Sent from the Solr - User mailing list archive at Nabble.com. > >

RE: Simple Wildcard Search Question

2009-12-11 Thread Ankit Bhatnagar
quot;name" or "01" oder "name01", i'm getting the right result. But since, i think, SOLR stores the string also under "name01", why don't a get any result when searching for "name0*" oder "name0?" thanks for any help QBasti -- View this

Simple Wildcard Search Question

2009-12-11 Thread QBasti
r "01" oder "name01", i'm getting the right result. But since, i think, SOLR stores the string also under "name01", why don't a get any result when searching for "name0*" oder "name0?" thanks for any help QBasti -- View this message

Re: Wildcard search question

2008-06-24 Thread Jon Drukman
Norberto Meijome wrote: ok well let's say that i can live without john/jon in the short term. what i really need today is a case insensitive wildcard search with literal matching (no fancy stemming. bobby is bobby, not bobbi.) what are my options? http://wiki.apache.org/solr/AnalyzersTokeniz

Re: Wildcard search question

2008-06-23 Thread Norberto Meijome
On Mon, 23 Jun 2008 14:23:14 -0700 Jon Drukman <[EMAIL PROTECTED]> wrote: > ok well let's say that i can live without john/jon in the short term. > what i really need today is a case insensitive wildcard search with > literal matching (no fancy stemming. bobby is bobby, not bobbi.) > > what ar

Re: Wildcard search question

2008-06-23 Thread Jon Drukman
Erik Hatcher wrote: No, because the original data is Bobby Gaza, so Bobby* would match, but not bobby*. "string" type (in the example schema, to be clear) does effectively no analysis, leaving the original string indexed as-is, case and all. [...] stemming and wildcard term queries aren't

Re: Wildcard search question

2008-06-23 Thread Erik Hatcher
On Jun 23, 2008, at 4:45 PM, Jon Drukman wrote: Erik Hatcher wrote: Jon, You provided a lot of nice details, thanks for helping us help you :) The one missing piece is the definition of the "text" field type. In Solr's _example_ schema, "bobby" gets analyzed (stemmed) to "bobbi"[1]. Whe

Re: Wildcard search question

2008-06-23 Thread Jon Drukman
Erik Hatcher wrote: Jon, You provided a lot of nice details, thanks for helping us help you :) The one missing piece is the definition of the "text" field type. In Solr's _example_ schema, "bobby" gets analyzed (stemmed) to "bobbi"[1]. When you query for bobby*, the query parser is not ru

Re: Wildcard search question

2008-06-23 Thread Erik Hatcher
Jon, You provided a lot of nice details, thanks for helping us help you :) The one missing piece is the definition of the "text" field type. In Solr's _example_ schema, "bobby" gets analyzed (stemmed) to "bobbi"[1]. When you query for bobby*, the query parser is not running an analyzer

Wildcard search question

2008-06-23 Thread Jon Drukman
When I search with q=bobby I get the following record: 2008-06-23T07:06:40Z http://farm1.static.flickr.com/117/... 9 Bobby Gaza [EMAIL PROTECTED] When I search with bobby* I get nothing. When I search with steve* I get "Steve Ballmer" and "Steve Jobs"... What's going on?