Home >Backend Development >PHP Tutorial >在大数据量下有什么分页方法?LIMIT效率不高

在大数据量下有什么分页方法?LIMIT效率不高

WBOY
WBOYOriginal
2016-06-06 20:41:38894browse

在大数据量下有什么分页方法?LIMIT效率不高

回复内容:

在大数据量下有什么分页方法?LIMIT效率不高

$sql = "select *from user where id>{$id} limit 10";$id为上一页最大的值

把数据缓存下来吧,或许应该考虑一下重构数据库结构了

上sphinx ...

不知道你用什么数据库,是否支持流模式返回数据(streaming)?数据量大的话,适合使用streaming模式,这样数据可以一边执行一边返回数据,不会将所有数据都缓存在内存里,从而减轻服务器压力。

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn