Re: Questions about schema.xml

2012-11-10 Thread Erick Erickson
> Again, this is using the default out-of-the box setting per the above. > > > The same applies for catenateNumbers. > > > Btw, I'm looking at this link for the above values: > http://wiki.apache.org/solr/**AnalyzersTokenizersTokenFilter**s<http://wiki.apache.org/solr/AnalyzersTok

Re: Questions about schema.xml

2012-11-08 Thread Jack Krupansky
om: johnmu...@aol.com Sent: Thursday, November 08, 2012 6:20 PM To: solr-user@lucene.apache.org Subject: Re: Questions about schema.xml Thank you everyone for your explanation. So for WordDelimiterFilter, let me see if I got it right. Given that out-of-the box setting for catenateWords is &qu

Re: Questions about schema.xml

2012-11-08 Thread johnmunir
iki.apache.org/solr/AnalyzersTokenizersTokenFilters --MJ -----Original Message- From: Erick Erickson To: solr-user Sent: Thu, Nov 8, 2012 6:57 pm Subject: Re: Questions about schema.xml And, in fact, you do NOT need to have two. If they are both identical, just specify one analysis chain

Re: Questions about schema.xml

2012-11-08 Thread Erick Erickson
And, in fact, you do NOT need to have two. If they are both identical, just specify one analysis chain with no qualifier, i.e. On Thu, Nov 8, 2012 at 9:44 AM, Jack Krupansky wrote: > Many token filters will be used 100% identically for both "index" and > "query" analysis, but WordDelimiterFilte

Re: Questions about schema.xml

2012-11-08 Thread Jack Krupansky
Many token filters will be used 100% identically for both "index" and "query" analysis, but WordDelimiterFilter is a rare exception. The issue is that at index time it has the ability to generate multiple tokens at the same position (the "catenate" options), any of which can be queried, but at

Re: Questions about schema.xml

2012-11-08 Thread johnmunir
t rules for "query" and "index", I like to see a concrete example, a use-case I can apply. -- MJ -Original Message- From: Prithu Banerjee To: solr-user Sent: Thu, Nov 8, 2012 12:34 am Subject: Re: Questions about schema.xml Those two values are used to specify th

Re: Questions about schema.xml

2012-11-07 Thread Prithu Banerjee
Those two values are used to specify the analyzer type you want. That can be of two kinds, one for the indexer- the analyzer you specify analyzes the input documents accordingly to build the index. The other one is for query, it analyzes your query. Typically the specified analyzer for index and qu