Re: Query to return all documents in the index

2005-10-06 Thread Cyril Barlow
Have a look at your fields to see if they share a certain term. eg if you have a URL field then 'http' will probably bring them all up. ___ To help you stay safe and secure online, we've developed the all new Yahoo! Securi

RE: Query to return all documents in the index

2005-10-06 Thread Vanlerberghe, Luc
Hostetter Sent: donderdag 6 oktober 2005 0:03 To: java-user@lucene.apache.org; Andy Goodell Subject: Re: Query to return all documents in the index : method to gather results. But as it turns out, sometimes we just want all of : the documents that match with the filter, sorted by the sort field. Does

Re: Query to return all documents in the index

2005-10-05 Thread Chris Hostetter
: method to gather results. But as it turns out, sometimes we just want all of : the documents that match with the filter, sorted by the sort field. Does : anyone know a query that returns all the documents in the index, so that i : could use that in this case? use a ConstantScoreQuery wrapped ar

Query to return all documents in the index

2005-10-05 Thread Andy Goodell
Hi, In my project we've been using the Searcher.search(query, filter, sort) method to gather results. But as it turns out, sometimes we just want all of the documents that match with the filter, sorted by the sort field. Does anyone know a query that returns all the documents in the index, so that