RE: Searching in "all"

2004-04-01 Thread Chad Small
()); System.out.println("multiFieldQuery: " + multiFieldQuery.toString()); -Original Message- From: Tate Avery [mailto:[EMAIL PROTECTED] Sent: Thu 4/1/2004 9:30 AM To: [EMAIL PROTECTED] Cc: Subject: Searchi

Re: Searching in "all"

2004-04-01 Thread Erik Hatcher
On Apr 1, 2004, at 10:30 AM, Tate Avery wrote: 2) Actually index an 'all' field for my document by just concatenating the content from the title, body, and notes fields. ... but this doubles my index size. :( This is actually my recommended approach. As for doubling the index size - not necessa

Searching in "all"

2004-04-01 Thread Tate Avery
Hello, If I have, for example, 3 fields in my document (title, body, notes)... is there some easy what to search 'all'? Below are the only 2 ideas I currently have/use: 1) If I want to search for 'x' in all, I do something like: title:x OR body:x OR notes:x ... but this does not reall