Hi I have a rails4 app using pagination with the will_paginate gem.
Is there a way to handle pagination with objects created very often? If you call the first page and right after that the page 2, considering new objects are created in the meantime, it is going to mess data (the offset in the sql request is for example going to call almost the same data as the first page).
Is there a way to use pagination with rapidly changing dynamic data?
Thx for your suggestions