RE: query and analyzers

2009-07-29 Thread Harsch, Timothy J. (ARC-SC)[PEROT SYSTEMS]
: solr-user@lucene.apache.org Subject: RE: query and analyzers In order to match (query) XYZ1* to (document) XYZ123 you do not need WordDelimiterFilterFactory. You need an tokenizer that recognizes XYZ123 as one token. And WhitespaceTokenizer is one of them. As I see from the fieldType named

RE: query and analyzers

2009-07-29 Thread AHMET ARSLAN
In order to match (query) XYZ1* to (document) XYZ123 you do not need WordDelimiterFilterFactory. You need an tokenizer that recognizes XYZ123 as one token. And WhitespaceTokenizer is one of them. As I see from the fieldType named text_ws, you want to use WhitespaceTokenizerFactory and there is

RE: query and analyzers

2009-07-29 Thread Harsch, Timothy J. (ARC-SC)[PEROT SYSTEMS]
esday, July 29, 2009 11:55 AM To: solr-user@lucene.apache.org Subject: Re: query and analyzers > What analyzer, tokenizer, filter factory would I need to > use to get wildcard matching to match where: > Value: > XYZ123 > Query: > XYZ1* StandardAnalyzer, WhitespaceAnalyzer. >

Re: query and analyzers

2009-07-29 Thread AHMET ARSLAN
> What analyzer, tokenizer, filter factory would I need to > use to get wildcard matching to match where: > Value: > XYZ123 > Query: > XYZ1* StandardAnalyzer, WhitespaceAnalyzer. > I have been messing with solr.WordDelimiterFilterFactory > splitOnNumerics and oreserveOriginal in both the analyz

query and analyzers

2009-07-29 Thread Harsch, Timothy J. (ARC-SC)[PEROT SYSTEMS]
Hi, What analyzer, tokenizer, filter factory would I need to use to get wildcard matching to match where: Value: XYZ123 Query: XYZ1* I have been messing with solr.WordDelimiterFilterFactory splitOnNumerics and oreserveOriginal in both the analyzer and the query. I also noticed it is different