o: solr-user@lucene.apache.org
> Subject: RE: Facet query with special characters
>
>
> : Note that I am (supposed to be) indexing/searching without analysis
> : tokenization (if that's the correct term) - i.e. field values like
> : 'pds-comp.domain' shouldn'
: Note that I am (supposed to be) indexing/searching without analysis
: tokenization (if that's the correct term) - i.e. field values like
: 'pds-comp.domain' shouldn't be (and I believe aren't) broken up as in
: 'pds', 'comp' 'domain' etc. (e.g. using the 'text_ws' fieldtype).
...
: Wh
?
Thanks!
Peter
> Date: Mon, 7 Dec 2009 15:30:47 -0800
> From: hossman_luc...@fucit.org
> To: solr-user@lucene.apache.org
> Subject: Re: Facet query with special characters
>
>
>
> : When performing a facet query where part of the value portion has a
> : special c
: When performing a facet query where part of the value portion has a
: special character (a minus sign in this case), the query returns zero
: results unless I put a wildcard (*) at the end.
check your analysis configuration for this fieldtype, in particular look
at what debugQuery produces
Backslash is the escape character for colon, hyphen, parentheses,
brackets, curly braces, tilde, caret. (Did I miss any?)
On Thu, Dec 3, 2009 at 7:59 AM, Peter 4U wrote:
>
> Hello Solr Forum,
>
>
>
> I believe I have found a solution (workaround?) for performing an explicit
> (non-wildcarded) fi
Hello Solr Forum,
I believe I have found a solution (workaround?) for performing an explicit
(non-wildcarded) field query with values that contain special (escaped)
characters.
Instead of:
field:"value-with-escape-chars"
change this to:
field:["value-with-escape-chars" TO "value-w