RE: The Riddle of the Underscore and the Dollar Sign . . .

2010-02-11 Thread Steven A Rowe
s behavior. > > Christopher > > -Original Message- > From: Ahmet Arslan [mailto:iori...@yahoo.com] > Sent: Thursday, February 11, 2010 12:40 PM > To: solr-user@lucene.apache.org > Subject: RE: The Riddle of the Underscore and the Dollar Sign . . . > > > >

RE: The Riddle of the Underscore and the Dollar Sign . . .

2010-02-11 Thread Christopher Ball
: Thursday, February 11, 2010 12:40 PM To: solr-user@lucene.apache.org Subject: RE: The Riddle of the Underscore and the Dollar Sign . . . > Unfortunately, the underscore is > being quite resilient =( > > I tried the solr.MappingCharFilterFactory and know the > mapping is working a

RE: The Riddle of the Underscore and the Dollar Sign . . .

2010-02-11 Thread Ahmet Arslan
> Unfortunately, the underscore is > being quite resilient =( > > I tried the solr.MappingCharFilterFactory and know the > mapping is working as > I am changing "c" => "q" just fine. But the underscore > refuses to go! > > I am baffled . . . I just activated name="textCharNorm" in example schem

RE: The Riddle of the Underscore and the Dollar Sign . . .

2010-02-11 Thread Vauthrin, Laurent
rin=disney@lucene.apache .org] On Behalf Of Christopher Ball Sent: Thursday, February 11, 2010 6:35 AM To: solr-user@lucene.apache.org Cc: 'Ahmet Arslan' Subject: RE: The Riddle of the Underscore and the Dollar Sign . . . Unfortunately, the underscore is being quite resil

RE: The Riddle of the Underscore and the Dollar Sign . . .

2010-02-11 Thread Christopher Ball
met Arslan [mailto:iori...@yahoo.com] Sent: Thursday, February 11, 2010 3:11 AM To: solr-user@lucene.apache.org Subject: Re: The Riddle of the Underscore and the Dollar Sign . . . > 1) How can I get rid of underscores('_') without using the > wordDelimiter > Filter (which gets rid of othe

Re: The Riddle of the Underscore and the Dollar Sign . . .

2010-02-11 Thread Ahmet Arslan
> 1) How can I get rid of underscores('_') without using the > wordDelimiter > Filter (which gets rid of other syntax I need)? Before TokenizerFactory you can apply that will replace "_" with " " or "" depending of your needs. mapping.txt will contain: "_" => "" or "_" => " "

The Riddle of the Underscore and the Dollar Sign . . .

2010-02-10 Thread Christopher Ball
I am perplexed by the behavior I am seeing of the Solr Analyzer and Filters with regard to Underscores. I am trying to get rid of underscores('_') when shingling, but seem unable to do so with a Stopwords Filter. And yet underscores are being removed when I am not even trying to by the WordDelimi

Re: The Riddle of the Underscore and the Dollar Sign

2010-02-03 Thread Lance Norskog
Please reframe how you give the various fields and tests - i'ts hard to follow in this email. On Wed, Feb 3, 2010 at 12:50 PM, Christopher Ball wrote: > I am perplexed by the behavior I am seeing of the Solr Analyzer and Filters > with regard to Underscores. > > > > 1) I am trying to get rid of t

The Riddle of the Underscore and the Dollar Sign

2010-02-03 Thread Christopher Ball
I am perplexed by the behavior I am seeing of the Solr Analyzer and Filters with regard to Underscores. 1) I am trying to get rid of them when shingling, but seem unable to do so with a Stopwords Filter. And yet they are being removed when I am not even trying to by the WordDelimiter Filter