Re: Search within a subset of documents

2010-10-11 Thread Sergey Bartunov
And so I think. Actually I hope that I can do something like that: 1) tell the Solr to prepare for searching 2) start my very fast filtering routine 3) send asynchronoussly IDs of filtered documents to the Solr and expect that Solr is ranging them in the parallel 4) get the result quickly On 11 O

Re: Search within a subset of documents

2010-10-11 Thread Gora Mohanty
On Mon, Oct 11, 2010 at 8:20 PM, Sergey Bartunov wrote: > Whether it will be enough effective if the subset is really large? [...] If the subset of IDs is large, and disjoint (so that you cannot use ranges), the query might look ugly, but generating it should not be much of a problem if you are u

Re: Search within a subset of documents

2010-10-11 Thread Sergey Bartunov
Whether it will be enough effective if the subset is really large? On 11 October 2010 18:39, Gora Mohanty wrote: > On Mon, Oct 11, 2010 at 7:00 PM, Sergey Bartunov wrote: >> Is it possible to use Solr for searching within a subset of documents >> represented by enumeration of document IDs? > > C

Re: Search within a subset of documents

2010-10-11 Thread Gora Mohanty
On Mon, Oct 11, 2010 at 7:00 PM, Sergey Bartunov wrote: > Is it possible to use Solr for searching within a subset of documents > represented by enumeration of document IDs? Couldn't you add the document ID to the query, e.g., if the field is called id, you can use ?q=id:, e.g., ?q=id:1234? You c

Search within a subset of documents

2010-10-11 Thread Sergey Bartunov
Is it possible to use Solr for searching within a subset of documents represented by enumeration of document IDs?