3

我目前正在使用 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'];
    }
}
4

2 回答 2

1

您可能希望根据响应的 SolrObject 而不是查询来执行此操作。您需要的所有信息都在其中。

$solrResponse = $solrClient->query($query);
$solrObject = $solrResponse->getResponse();
$paginator = new Zend_Paginator(new Xxx_Paginator_Adapter_SolrQuery($solrObject));
于 2012-05-03T18:06:36.500 回答
0

我假设您指的是必须执行查询以接收找到的行数的计数函数?

如果是这样,最简单的解决方案是在执行查询时将 numFound 存储在类变量中。然后,count 函数简单地检索该计数的值(如果存在)。

于 2011-06-05T19:51:09.917 回答