0 Replies Latest reply on Jan 15, 2004 1:11 PM by cbono

    on-load and page faults

    cbono

      Suppose I have the following:

      read ahead strategy : on-load
      page size: 100
      max pages: 2
      BeanA instances in DB: 800

      When I perform a findAll, two pages will be loaded w/ BeanA(0-100) and BeanA(101-200). When will the remaining beans be faulted into the pages? I am supposing when I the returned Iterator of the collection attempts to access bean 201 that the next 200 will be loaded into memory?

      Is that correct?

      Thanks,
      Chris