addField(Zend_Search_Lucene_Field::UnIndexed('document_id', $document->id)); $doc->addField(Zend_Search_Lucene_Field::UnIndexed('document_created', $document->created)); $doc->addField(Zend_Search_Lucene_Field::UnIndexed('document_updated', $document->updated)); $doc->addField(Zend_Search_Lucene_Field::Text('document_title', $document->title)); $doc->addField(Zend_Search_Lucene_Field::Text('document_description', $document->description)); // Add the document to the index $index->addDocument($doc); } // Commit the index $index->commit(); ?>