Programmer's Reference Guide
| Supported queries |
Search result pagination
As mentioned above, search result hit objects use lazy loading for stored document fields. When any stored field is accessed, the complete document is loaded.
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.
Example #1 Search result pagination example
- if (!$resultSet = $cache->load($cacheId)) {
- $hits = $index->find($query);
- foreach ($hits as $hit) {
- $resultSetEntry['id'] = $hit->id;
- $resultSetEntry['score'] = $hit->score;
- $resultSet[] = $resultSetEntry;
- }
- $cache->save($resultSet, $cacheId);
- }
- for ($resultId = $startId; $resultId < $endId; $resultId++) {
- 'id' => $resultSet[$resultId]['id'],
- 'score' => $resultSet[$resultId]['score'],
- 'doc' => $index->getDocument($resultSet[$resultId]['id']),
- );
- }
| Supported queries |
Add A Comment
Please do not report issues via comments; use the ZF Issue Tracker.
If you have a JIRA/Crowd account, we suggest you login first before commenting.

Comments
still this documentation is pretty damn convoluted