0

我必须一次获取超过 2,00,000 条记录并使用每页 100 或 1000 条记录的分页,而无需一次又一次地与数据库交互。

就像我们可以有一个虚拟缓存或隐藏的记录集,我的分页将显示记录。我听说这是可能的,但没有找到合适的解决方案。

如果有人对我的要求有解决方案,请建议我,我正在使用 PHP 和 mysql。

谢谢,

4

1 回答 1

0

You have 2 choices here: Make one DB transaction and overload the clients DOM or do multiple DB calls.

My suggestion is to take the middle path, select in 10 000 's, display data and then when they wish to paginate from beyond that you ajax more results in.

于 2013-02-20T14:24:20.737 回答