RE: Facet query with special characters

2009-12-09 Thread Peter 4U
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'

RE: Facet query with special characters

2009-12-08 Thread Chris Hostetter
: 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

RE: Facet query with special characters

2009-12-08 Thread Peter 4U
? 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

Re: Facet query with special characters

2009-12-07 Thread Chris Hostetter
: 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

Re: Facet query with special characters

2009-12-03 Thread Lance Norskog
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

RE: Facet query with special characters

2009-12-03 Thread Peter 4U
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