ises.
>
>
> -- Jack Krupansky
> -Original Message- From: Jack Krupansky
> Sent: Monday, May 21, 2012 11:23 AM
>
> To: solr-user@lucene.apache.org
> Subject: Re: Question about wildcards
>
> Before Solr 3.6, which added MultiTermAwareComponent for analyzers, the
>
day, May 21, 2012 11:23 AM
To: solr-user@lucene.apache.org
Subject: Re: Question about wildcards
Before Solr 3.6, which added MultiTermAwareComponent for analyzers, the
presence of a wildcard completely short-circuited (prevented) the query-time
analysis, so you have to manually emulate all steps o
I change the fieldtype of field to the follow:
As you see, i just keep the WhitespaceTokenizerFactory. That's works. Now i
could find using "*2231?7", "*2231*7", "*2231-7",
"*2231*",".2231-7".
How i can see, with this tokenizer the text was not spplitted. Is that
1:03 AM
To: solr-user@lucene.apache.org
Subject: Re: Question about wildcards
Hi.
In debug mode, the generated query was:
field:*2231-7
field:*2231-7
field:*2231-7
field:*2231-7
The analisys of indexing the text .2231-7 produces this result:
Index Analyzer .22317
Hi.
In debug mode, the generated query was:
field:*2231-7
field:*2231-7
field:*2231-7
field:*2231-7
The analisys of indexing the text .2231-7 produces this result:
Index Analyzer .22317 .22317 .22317 .22317 #1;1322.
#1;7 .22317
And for search fo
> I have a field that was indexed with the string
> ".2231-7". When i
> search using '*' or '?' like this "*2231-7" the query
> don't returns
> results. When i remove "-7" substring and search agin using
> "*2231" the
> query returns. Finally when i search usingĀ
> ".2231-7" the q