Hypersistence Optimizer allows you to get the most out of JPA and Hibernate. By scanning your application configuration and mappings, Hypersistence Optimizer can tell you what changes you need to do to speed up your data access layer.
Fetching more than 100 records using the Hibernate legacy Query#iterate is an indication that the user might be fetching more data than necessary. A query should return only the data that's needed to render a view or process a certain batch task.
When detecting that the result set contains more than 100 entities, a QueryResultIteratorCountEvent should be triggered.
Fetching more than
100
records using the Hibernate legacyQuery#iterate
is an indication that the user might be fetching more data than necessary. A query should return only the data that's needed to render a view or process a certain batch task.When detecting that the result set contains more than
100
entities, aQueryResultIteratorCountEvent
should be triggered.