Documentation

Building Indexes - Zend_Search_Lucene

Building Indexes

Creating a New Index

Index creation and updating capabilities are implemented within the Zend_Search_Lucene component, as well as the Java Lucene project. You can use either of these options to create indexes that Zend_Search_Lucene can search.

The PHP code listing below provides an example of how to index a file using Zend_Search_Lucene indexing API:

  1. // Create index
  2. $index = Zend_Search_Lucene::create('/data/my-index');
  3.  
  4. $doc = new Zend_Search_Lucene_Document();
  5.  
  6. // Store document URL to identify it in the search results
  7. $doc->addField(Zend_Search_Lucene_Field::Text('url', $docUrl));
  8.  
  9. // Index document contents
  10. $doc->addField(Zend_Search_Lucene_Field::UnStored('contents', $docContent));
  11.  
  12. // Add document to the index
  13. $index->addDocument($doc);

Newly added documents are immediately searchable in the index.

Updating Index

The same procedure is used to update an existing index. The only difference is that the open() method is called instead of the create() method:

  1. // Open existing index
  2. $index = Zend_Search_Lucene::open('/data/my-index');
  3.  
  4. $doc = new Zend_Search_Lucene_Document();
  5. // Store document URL to identify it in search result.
  6. $doc->addField(Zend_Search_Lucene_Field::Text('url', $docUrl));
  7. // Index document content
  8. $doc->addField(Zend_Search_Lucene_Field::UnStored('contents',
  9.                                                   $docContent));
  10.  
  11. // Add document to the index.
  12. $index->addDocument($doc);

Updating Documents

The Lucene index file format doesn't support document updating. Documents should be removed and re-added to the index to effectively update them.

Zend_Search_Lucene::delete() method operates with an internal index document id. It can be retrieved from a query hit by 'id' property:

  1. $removePath = ...;
  2. $hits = $index->find('path:' . $removePath);
  3. foreach ($hits as $hit) {
  4.     $index->delete($hit->id);
  5. }

Retrieving Index Size

There are two methods to retrieve the size of an index in Zend_Search_Lucene.

Zend_Search_Lucene::maxDoc() returns one greater than the largest possible document number. It's actually the overall number of the documents in the index including deleted documents, so it has a synonym: Zend_Search_Lucene::count().

Zend_Search_Lucene::numDocs() returns the total number of non-deleted documents.

  1. $indexSize = $index->count();
  2. $documents = $index->numDocs();

Zend_Search_Lucene::isDeleted($id) method may be used to check if a document is deleted.

  1. for ($count = 0; $count < $index->maxDoc(); $count++) {
  2.     if ($index->isDeleted($count)) {
  3.         echo "Document #$id is deleted.\n";
  4.     }
  5. }

Index optimization removes deleted documents and squeezes documents' IDs in to a smaller range. A document's internal id may therefore change during index optimization.

Index optimization

A Lucene index consists of many segments. Each segment is a completely independent set of data.

Lucene index segment files can't be updated by design. A segment update needs full segment reorganization. See Lucene index file formats for details (» http://lucene.apache.org/java/2_3_0/fileformats.html) [1] . New documents are added to the index by creating new segment.

Increasing number of segments reduces quality of the index, but index optimization restores it. Optimization essentially merges several segments into a new one. This process also doesn't update segments. It generates one new large segment and updates segment list ('segments' file).

Full index optimization can be trigger by calling the Zend_Search_Lucene::optimize() method. It merges all index segments into one new segment:

  1. // Open existing index
  2. $index = Zend_Search_Lucene::open('/data/my-index');
  3.  
  4. // Optimize index.
  5. $index->optimize();

Automatic index optimization is performed to keep indexes in a consistent state.

Automatic optimization is an iterative process managed by several index options. It merges very small segments into larger ones, then merges these larger segments into even larger segments and so on.

MaxBufferedDocs auto-optimization option

MaxBufferedDocs is a minimal number of documents required before the buffered in-memory documents are written into a new segment.

MaxBufferedDocs can be retrieved or set by $index->getMaxBufferedDocs() or $index->setMaxBufferedDocs($maxBufferedDocs) calls.

Default value is 10.

MaxMergeDocs auto-optimization option

MaxMergeDocs is a largest number of documents ever merged by addDocument(). Small values (e.g., less than 10.000) are best for interactive indexing, as this limits the length of pauses while indexing to a few seconds. Larger values are best for batched indexing and speedier searches.

MaxMergeDocs can be retrieved or set by $index->getMaxMergeDocs() or $index->setMaxMergeDocs($maxMergeDocs) calls.

Default value is PHP_INT_MAX.

MergeFactor auto-optimization option

MergeFactor determines how often segment indices are merged by addDocument(). With smaller values, less RAM is used while indexing, and searches on unoptimized indices are faster, but indexing speed is slower. With larger values, more RAM is used during indexing, and while searches on unoptimized indices are slower, indexing is faster. Thus larger values (> 10) are best for batch index creation, and smaller values (< 10) for indices that are interactively maintained.

MergeFactor is a good estimation for average number of segments merged by one auto-optimization pass. Too large values produce large number of segments while they are not merged into new one. It may be a cause of "failed to open stream: Too many open files" error message. This limitation is system dependent.

MergeFactor can be retrieved or set by $index->getMergeFactor() or $index->setMergeFactor($mergeFactor) calls.

Default value is 10.

Lucene Java and Luke (Lucene Index Toolbox - » http://www.getopt.org/luke/) can also be used to optimize an index. Latest Luke release (v0.8) is based on Lucene v2.3 and compatible with current implementation of Zend_Search_Lucene component (Zend Framework 1.6). Earlier versions of Zend_Search_Lucene implementations need another versions of Java Lucene tools to be compatible:

  • Zend Framework 1.5 - Java Lucene 2.1 (Luke tool v0.7.1 - http://www.getopt.org/luke/luke-0.7.1/)

  • Zend Framework 1.0 - Java Lucene 1.4 - 2.1 (Luke tool v0.6 - http://www.getopt.org/luke/luke-0.6/)

Permissions

By default, index files are available for reading and writing by everyone.

It's possible to override this with the Zend_Search_Lucene_Storage_Directory_Filesystem::setDefaultFilePermissions() method:

  1. // Get current default file permissions
  2. $currentPermissions =
  3.     Zend_Search_Lucene_Storage_Directory_Filesystem::getDefaultFilePermissions();
  4.  
  5. // Give read-writing permissions only for current user and group
  6. Zend_Search_Lucene_Storage_Directory_Filesystem::setDefaultFilePermissions(0660);

Limitations

Index size

Index size is limited by 2GB for 32-bit platforms.

Use 64-bit platforms for larger indices.

Supported Filesystems

Zend_Search_Lucene uses flock() to provide concurrent searching, index updating and optimization.

According to the PHP » documentation, " flock() will not work on NFS and many other networked file systems".

Do not use networked file systems with Zend_Search_Lucene.

[1] The currently supported Lucene index file format is version 2.3 (starting from Zend Framework 1.6).

Copyright

© 2006-2021 by Zend by Perforce. Made with by awesome contributors.

This website is built using zend-expressive and it runs on PHP 7.

Contacts