I've an Zend_Search_Lucene index that's generated from a db table, when I add a new line to that table, I also update the index, using the following:

$index = Zend_Search_Lucene::open($indexName);
//adiciona ao documento
$doc = new Zend_Search_Lucene_Document();
... add the fields

$index->addDocument($doc);

But the script stops responding in the last line... Any ideas?

I'm using ZF 1.0.4

--
Felipe Weckx <[EMAIL PROTECTED]>
MT4 Tecnologia
(11) 3064-3226

Reply via email to