分页()的分页和数据太多

时间:2014-03-16 10:43:28

标签: mongodb

我正在设置分页系统,但是 当$pagebig(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);

0 个答案:

没有答案