我目前正在使用Zend_Paginator的PECL SolrQuery适配器。我无法想办法避免重复查询。有没有人有更好的实施?
<?php
require_once 'Zend/Paginator/Adapter/Interface.php';
class Xxx_Paginator_Adapter_SolrQuery implements Zend_Paginator_Adapter_Interface
{
private $query;
private $client;
public function __construct(SolrQuery $query, $client) {
$this->query = $query;
$this->client = $client instanceof SolrClient ? $client : new SolrClient($client);
}
public function count() {
$this->query->setRows(0);
return $this->execute()->numFound;
}
public function getItems($offset, $itemCountPerPage) {
$this->query->setStart($offset)->setRows($itemCountPerPage);
return $this->execute()->docs;
}
private function execute() {
$response = $this->client->query($this->query)->getResponse();
return $response['response'];
}
}
答案 0 :(得分:1)
您可能希望基于SolrObject进行响应,而不是查询。您需要的所有信息都在那里。
$solrResponse = $solrClient->query($query);
$solrObject = $solrResponse->getResponse();
$paginator = new Zend_Paginator(new Xxx_Paginator_Adapter_SolrQuery($solrObject));
答案 1 :(得分:0)
我假设您指的是count函数必须执行查询以接收找到的行数?
如果是这样,最简单的解决方案是在执行查询时将numFound存储在类变量中。然后,count函数只检索该计数的值(如果存在)。