When to use client side and server side pagination?

Forums AngularWhen to use client side and server side pagination?
Staff asked 2 years ago

Answers (2)

Add Answer
Umang Ramani Marked As Accepted
Staff answered 2 years ago

Client-side pagination will load all 100 numbers if there are 100 numbers of data. Following that, it will be broken into separate pages. If there are 100 number data and you just require ten on the page, the server will only deliver ten data. In other words, it will load faster. Client-side pagination is the best strategy when working with little quantities of data.

Staff answered 2 years ago

If there are 100 numbers of data, client-side pagination will load all 100 numbers. After that, it will be divided into distinct pages. In server-side pagination, if there are 100 numbers of data and you only need 10 on the page, the server will only provide 10 data. It will, in other words, load quicker. When dealing with modest amounts of data, client-side pagination is the ideal approach.

Subscribe

Select Categories