| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- <?xml version="1.0" encoding="UTF-8"?>
- <!-- Reviewed: no -->
- <sect1 id="learning.lucene.pagination">
- <title>Search result pagination</title>
- <para>
- As <link linkend="learning.lucene.searching.identifiers">mentioned above</link>, search
- result hit objects use lazy loading for stored document fields. When any stored field is
- accessed, the complete document is loaded.
- </para>
- <para>
- Do not retrieve all documents if you actually need to work only with some portion of them.
- Go through the search results and store document IDs (and optionally the score) somewhere to
- retrive documents from the index during the next script execution.
- </para>
- <example id="learning.lucene.pagination.example">
- <title>Search result pagination example</title>
- <programlisting language="php"><![CDATA[
- $cacheId = md5($query);
- if (!$resultSet = $cache->load($cacheId)) {
- $hits = $index->find($query);
- $resultSet = array();
- foreach ($hits as $hit) {
- $resultSetEntry = array();
- $resultSetEntry['id'] = $hit->id;
- $resultSetEntry['score'] = $hit->score;
- $resultSet[] = $resultSetEntry;
- }
- $cache->save($resultSet, $cacheId);
- }
- $publishedResultSet = array();
- for ($resultId = $startId; $resultId < $endId; $resultId++) {
- $publishedResultSet[$resultId] = array(
- 'id' => $resultSet[$resultId]['id'],
- 'score' => $resultSet[$resultId]['score'],
- 'doc' => $index->getDocument($resultSet[$resultId]['id']),
- );
- }
- ]]></programlisting>
- </example>
- </sect1>
|