I am currently working in a Zend_Paginator's adapter for the PECL SolrQuery. I can't figure a way to avoid the duplicate query. Does anyone have a better implementation?

<?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'];
    }
}
link|improve this question
Can explain what query is being duplicated? – toneplex May 18 '11 at 17:01
feedback

2 Answers

I assume you're referring to the count function having to execute the query to receive the number of rows found?

If so, the simplest solution would be to store the numFound in a class variable when executing the query. Then, the count function simply retrieves the value of that count if it exists.

link|improve this answer
feedback

You would want to do it based off the SolrObject for the response, rather than the query. All of the information you need is in there.

$solrResponse = $solrClient->query($query);
$solrObject = $solrResponse->getResponse();
$paginator = new Zend_Paginator(new Xxx_Paginator_Adapter_SolrQuery($solrObject));
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.