On Dec 27, 2007 11:01 AM, Britske <[EMAIL PROTECTED]> wrote: > after inspecting solrconfig.xml I see that I already have enabled lazy field > loading by: > <enableLazyFieldLoading>true</enableLazyFieldLoading> (I guess it was > enabled by default) > > Since any query returns about 10 fields (which differ from query to query) , > would this mean that only these 10 of about 2000-4000 fields are retrieved / > loaded?
Yes, but that's not the whole story. Lucene stores all of the fields back-to-back with no index (there is no random access to particular stored fields)... so all of the fields must be at least scanned. -Yonik