Is a way to perform an efficient pagined query with the mysql platform
(InnoDb driver) ?
My queries use
- the setMaxResults / setFirstResult methods to limit the number of results.
- one or several indexes (BTREE).
After several tests, it seems to me that EclipseLink uses no index to
optimize the queries . Is EclipseLink run through the entire base?
Is the use of a cursor could make queries optimized ?
Other question: setMaxResults / setFirstResult and ScrollableCursor seem
limited to integer values. Is a way to perform my pagined queries on a very
large database?