: 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
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
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.
>
> 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
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