Hi,
On 3/15/07, adampp <[EMAIL PROTECTED]> wrote:
Does lazy loading of search result mean that when you jump around using the
RangeIterator's methods skip only the nodes that get touched by the iterator
actually get loaded?
That is, if I have 1 million nodes returned in a QueryResult and only want
to get records 50 through 59, then only those ten records actually get
loaded?
No. The current lazy iterator always starts from the beginning, it's
only the tail of the result set that is not loaded. In your case the
iterator would load something like 60+ records, depending on the
resultFetchSize setting in your SearchIndex configuration.
BR,
Jukka Zitting