MySQL Data - Best way to implement paging?

后端 未结 7 1203
灰色年华
灰色年华 2020-11-22 09:32

My iPhone app connects to my PHP web service to retrieve data from a MySQL database. A request can return 500 results.

What is the best way to implement paging and r

7条回答
  •  刺人心
    刺人心 (楼主)
    2020-11-22 10:13

    This tutorial shows a great way to do pagination. Efficient Pagination Using MySQL

    In short, avoid to use OFFSET or large LIMIT

提交回复
热议问题