Re: Regular expression not working

2009-09-28 Thread Lance Norskog
You would have to index GIlmore and gilmore. You could make a separate field type which does not do upper->lower case transformation. On Mon, Sep 28, 2009 at 11:49 AM, Siddhartha Pahade wrote: > Thnx for the reply > > I want to make gilmore* work...sombody told me you can make attributes case > i

Re: Regular expression not working

2009-09-28 Thread Siddhartha Pahade
Thnx for the reply I want to make gilmore* work...sombody told me you can make attributes case insensitive while building an index... I am trying to research on it... Do you got any pointer? Thanks... On Mon, Sep 28, 2009 at 2:29 PM, Lance Norskog wrote: > Wildcards don't really get proces

Re: Regular expression not working

2009-09-28 Thread Lance Norskog
Wildcards don't really get processed like other queries - Gilmore* will work. On Mon, Sep 28, 2009 at 8:30 AM, Avlesh Singh wrote: > Such questions are better answered on the user mailing list. You don't need > to post them on the dev list. > What matches an incoming query is largely a function o

Re: Regular expression not working

2009-09-28 Thread Avlesh Singh
Such questions are better answered on the user mailing list. You don't need to post them on the dev list. What matches an incoming query is largely a function of your field type definition and the way you analyze your field data query time and index time. Copy-paste your field and its type definit

Regular expression not working

2009-09-28 Thread Siddhartha Pahade
Hi guys, My search result is Gilmore Girls If I search on Gilmore, it gives me result Gilmore Girls in the output as desired. However, if I search on string gilmore* or gilm , it does not work whereas we want it to work. Any help highly appreciated. Thanks!