Querying Question

2008-08-21 Thread Jake Conk
Hello, I'm having trouble using the + operator. According to the documentation if I put that operator in front of any term then it should find that term anywhere within the field. So if I want all the records that have the name Jake in them I started with a simple query that works: ?q=Jake

Re: Querying Question

2008-08-21 Thread Erik Hatcher
On Aug 21, 2008, at 7:33 PM, Jake Conk wrote: I'm having trouble using the + operator. According to the documentation if I put that operator in front of any term then it should find that term anywhere within the field. Be sure to look at this documentation:

Re: Querying Question

2008-08-21 Thread Walter Underwood
Also, + in a URL parameter turns into a space. The URL for this query: +field:Jake should look like this: ?q=%2Bfield%3AJake The admin UI takes care of that for you. wunder On 8/21/08 5:53 PM, Erik Hatcher [EMAIL PROTECTED] wrote: On Aug 21, 2008, at 7:33 PM, Jake Conk wrote: I'm

Re: Querying Question

2008-08-21 Thread Jake Conk
I thought if I used copyField / to copy my string field to a text field then I can search for words within it and not limited to the entire content. Did I misunderstand that? Thanks, - Jake On Thu, Aug 21, 2008 at 5:53 PM, Erik Hatcher [EMAIL PROTECTED] wrote: On Aug 21, 2008, at 7:33 PM, Jake

Re: Querying Question

2008-08-21 Thread Norberto Meijome
On Thu, 21 Aug 2008 18:09:11 -0700 Jake Conk [EMAIL PROTECTED] wrote: I thought if I used copyField / to copy my string field to a text field then I can search for words within it and not limited to the entire content. Did I misunderstand that? but you need to search on the fields that are

Re: Querying Question

2008-08-21 Thread Erik Hatcher
That's correct. But your query clause was category_facet:test, and you said category_facet is a string type. If you copyField'd category_facet to category_text (a text type), then you need to search with category_text:test Erik On Aug 21, 2008, at 8:09 PM, Jake Conk wrote: I