I was wondering if someone could explain the differences and pros and cons of each approach. Ie. the underlying queries to DBs, performance, etc
- RxJava approach
RxJavaCrudRepository.findAll().skip(offset).limit(max)
- Pageable approach
CrudRepository.findAll(Pageable.from(offset, max))