Re: About loading lazily

2010-05-27 Thread Shaun Senecal
Haha, sorry, ignore my response completely. I used the same term for something completely different, and not related to Lucene at all :) On Mon, May 24, 2010 at 8:06 PM, Grant Ingersoll wrote: > I'd also add that the Document keeps a pointer to the spot in storage where > that value can be loa

Re: About loading lazily

2010-05-24 Thread Grant Ingersoll
I'd also add that the Document keeps a pointer to the spot in storage where that value can be loaded from. It can result in a performance saving in the typical search use case where one is displaying just "metadata" fields on a page, but not the full content. In this case, the full content pag

Re: About loading lazily

2010-05-23 Thread Shaun Senecal
When a field is lazy loaded, the actual value is not retrieved from the server until it is rendered by the UI. This is the same behaviour as the LiveView that ExtGWT currently supports. The difference is that once a value has been retrieved once, LazyLoad will not fetch that value from the server

About loading lazily

2010-05-23 Thread 罗磊
Hi: Can you give me some details about loading lazily? What happens when I load fields lazily? Thanks in advance Luo Lei