ion in SOLR when querying for fields of type string
On Nov 13, 2007 6:23 PM, Kasi Sankaralingam <[EMAIL PROTECTED]>
wrote:
It is not tokenized, it is a string field, so will it still match
"photo" for field 'title_s' and "book" for the default field?
querying for fields of type string
On Nov 13, 2007 6:23 PM, Kasi Sankaralingam <[EMAIL PROTECTED]> wrote:
> It is not tokenized, it is a string field, so will it still match
> "photo" for field 'title_s' and "book" for the default field?
Yes, because the q
On Nov 13, 2007 6:23 PM, Kasi Sankaralingam <[EMAIL PROTECTED]> wrote:
> It is not tokenized, it is a string field, so will it still match
> "photo" for field 'title_s' and "book" for the default field?
Yes, because the query parser splits up things by whitespace before
analyzers are even applied.
tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:684)
at java.lang.Thread.run(Thread.java:595)
-Original Message-
From: Ryan McKinley [mailto:[EMAIL PROTECTED]
Sent: Tuesday, November 13, 2007 2:26 PM
To: solr-user@lucene.apache.org
Subject: Re: Exception in SOLR when quer
Can you post the full exception?
b) Do a query in the SOLR admin tool title_s: photo book
Do you have a space after the ':'?
q=title_s: photo book
I expect that would fail (though null pointer is not a very nice error)
q=title_s:"photo book"
should work fine:
title_s:photo book
wou
I am using the latest version of solr (1.2)
-Original Message-
From: Stu Hood [mailto:[EMAIL PROTECTED]
Sent: Tuesday, November 13, 2007 11:32 AM
To: solr-user@lucene.apache.org
Subject: RE: Exception in SOLR when querying for fields of type string
The first question is, what version of
The first question is, what version of Solr are you using?
Thanks,
Stu
-Original Message-
From: Kasi Sankaralingam <[EMAIL PROTECTED]>
Sent: Tuesday, November 13, 2007 2:27pm
To: solr-user@lucene.apache.org
Subject: Exception in SOLR when querying for fields of type string
Hi,