sohamsshah / askNeoG

Stackoverflow for NeoG Camp

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Implement Pagination approach in the API calls that GETs Questions, Answers, Comments etc. fields

sohamsshah opened this issue · comments

Pagination can be a very good approach as the app is expected to scale to serve hundreds of questions and answers and GET requests that gives the data must limit the data response to ensure less load on client and better loading.

By this on the benefits on client will be:

  • Pagination
  • Infinite Scroll
  • Better State management

Refering: https://www.youtube.com/watch?v=ZX3qt0UWifc

Feel free to add more resources about this approach.