Re: getting number of stored documents via rest api

2007-10-11 Thread Erik Hatcher
Another route to getting the number of documents is to get it from the LukeRequestHandler: http://localhost:8983/solr/admin/luke?numTerms=0 (numTerms=0 to get the fastest response possible) Erik On Oct 10, 2007, at 10:19 AM, Stefan Rinner wrote: Hi for some tests I need to know

Re: getting number of stored documents via rest api

2007-10-11 Thread Walter Underwood
This even works if you request 0 results. --wunder On 10/11/07 1:56 AM, "Stefan Rinner" <[EMAIL PROTECTED]> wrote: > > On Oct 10, 2007, at 6:49 PM, Chris Hostetter wrote: > >> >> : I think search for "*:*" is the optimal code to do it. I don't >> think you can >> : do anything faster. >> >> F

Re: getting number of stored documents via rest api

2007-10-11 Thread Stefan Rinner
On Oct 10, 2007, at 6:49 PM, Chris Hostetter wrote: : I think search for "*:*" is the optimal code to do it. I don't think you can : do anything faster. FYI: getting the data from the xml returned by stats.jsp is definitely faster in the case where you really want all docs. if you want th

Re: getting number of stored documents via rest api

2007-10-10 Thread Chris Hostetter
: I think search for "*:*" is the optimal code to do it. I don't think you can : do anything faster. FYI: getting the data from the xml returned by stats.jsp is definitely faster in the case where you really want all docs. if you want the total number from some other query however, don't "count

Re: getting number of stored documents via rest api

2007-10-10 Thread Chris Hostetter
: there a fast & easy way to retrieve this number (instead of searching for : "*:*" and counting the results)? NOTE: you don't have to count the results to know the total number of docs matching any query ... just use the numFound attribute of the block. : I already took a look at the stats.j

Re: getting number of stored documents via rest api

2007-10-10 Thread climbingrose
I think search for "*:*" is the optimal code to do it. I don't think you can do anything faster. On 10/11/07, Stefan Rinner <[EMAIL PROTECTED]> wrote: > > Hi > > for some tests I need to know how many documents are stored in the > index - is there a fast & easy way to retrieve this number (instead