Let's say I index documents using this
Document doc = new Document();
doc.add(Field.Text("file1", (Reader) new InputStreamReader(is)));
doc.add(Field.Text("file2", (Reader) new InputStreamReader(is2)));And want to do a search like this
file1:Word file2:Word2
Basically doing a search using mutiple segments, file1 and file2 in the same query, how would this be possible?
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
