我已经为我的网站编写了一个基本的索引脚本,它似乎正在工作......有点。它通过了大约 3/4 需要索引的页面,然后给出了这个错误:
致命错误:/Zend/Search/Lucene/Analysis/Analyzer.php 第 166 行中的最大执行时间超过 0 秒
它似乎每次都挂在不同的位置。一分钟后我运行它并得到了这个:
致命错误:在第 349 行的 /Zend/Search/Lucene/Storage/Directory/Filesystem.php 中超过了 0 秒的最大执行时间
这是脚本:
foreach($all_items as $item) {
$doc = new Zend_Search_Lucene_Document();
$doc->addField(Zend_Search_Lucene_Field::Text('title', $item['pagetitle']));
$doc->addField(Zend_Search_Lucene_Field::Text('url', $item['url']));
$doc->addField(Zend_Search_Lucene_Field::Text('country', $item['country']));
// Add document to the index
$index->addDocument($doc);
}