0

有什么方法可以删除 Zend_Search_Lucene 创建的索引文件?如果不可能,请建议一种删除索引数据的方法。我已经从代码中尝试过了。但是失败了。当我试图从 Zend Studio 中删除索引文件时,它给了我一个错误,因为“资源与系统不同步”。我什至不能从应用程序文件夹中做到这一点。请问,有人可以帮帮我吗?

$hits = $index->find('path:' . $indexpath);
foreach ($hits as $key =>$hit) 
{
    $index->delete($key);
}
$indexSize = $index->count();
$documents = $index->numDocs();
for ($count = 0; $count < $index->maxDoc(); $count++) 
{
    if ($index->isDeleted($count)) 
    {
       echo "Document deleted.\n";
    }
}
4

1 回答 1

1

这是我在 UNIX 服务器上的方式:

/**
 * Delete whole Index, get $PATH_TO_INDEX from constant
 *
 * @return the last line of the command output or FALSE on failure
 */
public function deleteIndex(){
    $command = "rm -R ".$PATH_TO_INDEX;
    return system($command);
}
于 2013-02-01T10:38:08.473 回答