< WebObjects < EOF < Using EOF

Overview

By default, when you use an EOFetchSpecification, it will fetch all of the EOs that match its EOQualifier. However, often the user interface you will be using is paginated, and there are large performance wins by instead loading your results in pages.

Core WO

EOFetchSpecification provides a setFetchLimit(int) method, but it does not directly support pagination, rather it will simply stop returning results after the number specified. This is useful for a cut-and-run approach to querying, but if you need to provide multiple pages of results, you will likely need to look elsewhere.

Project Wonder

Project Wonder provides several faciliities for addressing this problem:

  • ERXEOControlUtilities.objectsInRange(ec, fs, start, end) for Postgres, MySQL, and Frontbase
  • ERXBatchingDisplayGroup
  • ERXRecursiveBatchFetching

WODisplayGroup

This article is issued from Wikibooks. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.