-
Hi,
First of all: nice library. I haven't used it yet but I'm planning to use it when I get to a new project.
Have you considered keyset/seek pagination? Offset based pagination has performance i…
-
###Description
I am using pageAndNavigate method provided in the PaginatedCriteriaBuilder interface to paginate the resultlist based on entity identifier. The count query generated has the page posit…
-
We should explore how we could switch from Criteria Queries to JPQL queries as Hibernate has a much better efficiency running String-based queries:
```
CriteriaBuilder query
Benchmark …
-
The following two queries are executed at startup (thread name "Apache Sling Repository Startup Thread #1-ACTool-Config-Worker"). Depending on the content, they may try to read more than 100'000 nodes…
-
Useful for #16 (timeline view) since you can now filter to just the items on a specific day - but if there are more than 50 items you can't see them all.
-
Hello
Qliksaas apis use pagination without offset params. They provide the "next" url in the response page
How could I tell drill to use "links.next.href" value for retreiving further records?
…
-
*Is your feature request related to a problem? Please describe.**
Currently I would like to reload data using Progressive Ajax Loading. For the backend I use Keyset Pagination. This page explains t…
-
Row value is part of the SQL standard -though not supported by every database in all places- and it allows using the following syntax (for example in a where clause):
```sql
WHERE (timestamp, id…
-
-
Hi, I'm trying to do something like below to implement keyset pagination
> SELECT * FROM contacts
> WHERE (lastname,firstname) > (?1,?2)
> ORDER BY lastname, firstname
> LIMIT 7;
(from htt…