HighRadius interview question

Which is better client-side pagination or server-side?

Interview Answer

Anonymous

8 Aug 2022

Server side - fits large data sets. The less payload for each page offers stability and scalability. The extra loading time for subsequent pages can be offset by pre-fetching the next few pages, which is also called hybrid server and client pagination.