Re: Case Insensitive Matching in Solr/Lucene

2014-11-25 Thread Apurv Verma
the form fq=Term:"quick" Also could you please point me to some additional links on how I can index different variants of a token at the same position? -- Regards, Apurv Verma On Tue, Nov 25, 2014 at 6:26 PM, Michael Sokolov < msoko...@safaribooksonline.com> wrote: > righ

Re: Case Insensitive Matching in Solr/Lucene

2014-11-25 Thread Apurv Verma
Hii Ahmet, Thanks for your reply. Creating two separate fields is a viable solution where one contains the original value and the other contains the lowercased value. But this leads to index bloat up. (~ 2x) I am looking for any other alternative solutions. -- Regards, Apurv Verma On Tue

Case Insensitive Matching in Solr/Lucene

2014-11-25 Thread Apurv Verma
Hey all, The standard solution to doing a case-insensitive match in lucene is to use a Lowercase filter at index and query time. However this does not preserve the content of the original document. For example if my inverted index is. Term Doc_1 Doc_2 - Quick |

Re: Writing my first Solr Search Component

2014-08-15 Thread Apurv Verma
Thanks, this was very helpful :) -- Regards, Apurv Verma On Thu, Aug 14, 2014 at 9:31 AM, Tri Cao wrote: > 1. No, there is only one instance > 2. init() is called > 3. check these standard search components: > > https://github.com/apache/lucene-solr/tree/trunk/solr/core/src/

Writing my first Solr Search Component

2014-08-13 Thread Apurv Verma
, Apurv Verma