On 12/5/06, Tracey Jaquith <[EMAIL PROTECTED]> wrote:
Now I have one new mystery that's popped up for me. With std req handler, this simple query q=title:commute is *not* returning me all documents that have the word "commute" in the title. There must be some other filter/clause or something happening that I'm not aware of? (For example, I do "indent=on&fl=title&q=commute" in a wget and grep the results for <title> and then grep -i for commute, there are 23 hits. But doing "&q=title:commute" only returns one of those hits..)
title in your schema is of type "string" which indexes the whole value verbatim. There is only one document with title:commute Most likely you want to change the type of that field to "text" or some other analyzed type that at least breaks apart words by whitespace. -Yonik