我正在设置分页系统,但是
当$page
为big(2800)
时,我收到错误消息:
没有索引的sort()数据太多。添加索引或指定 较小的限制
我的代码如下,使用Mongodb Doctrine ODM:
$markers = $this->get('doctrine_mongodb')
->getManager()
->getRepository('ngNearBundle:Hospitals')
->findBy(array('author'=>$request->getSession()->get('userId')),array('date'=>'DESC'))
->limit(15)
->skip(($page-1)*15);