解决了
看起来很累的时候工作和睡个好觉之后工作是不一样的。问题出在 prod.dev.index 中的文件上。他们失踪了。我重新创建了它们并且它起作用了。
我正在使用集成了学说和 Zend Lucene Search 的 symfony 1.4。当我按照 Jobeet 教程第一次安装它时,它运行良好。我通过 svn 将项目上传到另一台服务器,但它根本不起作用。现在它甚至不在我的本地主机中工作。
我想它一定与缓存或索引有关,但是有人可以在这里帮助我吗?我被困住了。
更新
抱歉,我没有提供更多信息。我想是深夜,我很累。
权限没问题,提交后文件在服务器中,一切正常。现在我注意到,当我想添加一个新项目时,它给了我错误:
500 | 内部服务器错误 | Zend_Search_Lucene_Exception 索引在指定目录中不存在。
在我的 data/ 文件夹中,我有 lucene 之前创建的 podcast.dev.index 和 podcast.prod.index 文件夹。
我的 PodcastTable.class.php 文件的代码是:
public static function getLuceneIndex() {
ProjectConfiguration::registerZend();
if (file_exists($index = PodcastTable::getLuceneIndexFile())) {
return Zend_Search_Lucene::open($index);
} else {
return Zend_Search_Lucene::create($index);
}
}
public static function getLuceneIndexFile() {
return sfConfig::get('sf_data_dir') . '/podcast.' . sfConfig::get('sf_environment') . '.index';
}
public function getForLuceneQuery($query, $execute = true) {
$hits = self::getLuceneIndex()->find($query);
$pks = array();
foreach ($hits as $hit) {
$pks[] = $hit->pk;
}
if (empty($pks)) {
return array();
}
$q = $this->createQuery('p')
->where('p.is_published = 1')
->andWhereIn('p.podcast_id', $pks)
//->limit(Doctrine_Core::getTable('Configuracion')->getPodcastsPerPage())
->orderBy('p.podcast_id desc');
if (!$execute){
return $q;
}
return $q->execute();
}
在 Podcast.class.php 文件中:
public function save(Doctrine_Connection $conn = null) {
// ...
$ret = parent::save($conn);
$this->updateLuceneIndex();
return $ret;
}
public function delete(Doctrine_Connection $conn = null) {
$index = PodcastTable::getLuceneIndex();
if ($hit = $index->find('pk:' . $this->getPodcastId())) {
$index->delete($hit->id);
}
return parent::delete($conn);
}
public function updateLuceneIndex() {
$index = PodcastTable::getLuceneIndex();
// remove an existing entry
if ($hit = $index->find('pk:' . $this->getPodcastId())) {
$index->delete($hit->podcastId);
}
$isActive = $this->getIsPublished();
// don't index expired and non-activated jobs
if (!$isActive) {
return;
}
$doc = new Zend_Search_Lucene_Document();
// store job primary key URL to identify it in the search results
$doc->addField(Zend_Search_Lucene_Field::UnIndexed('pk', $this->getPodcastId()));
// index job fields
$doc->addField(Zend_Search_Lucene_Field::UnStored('name', $this->getPodcastName(), 'utf-8'));
$doc->addField(Zend_Search_Lucene_Field::UnStored('description', $this->getPodcastDescription(), 'utf-8'));
$doc->addField(Zend_Search_Lucene_Field::UnStored('image', $this->getImagePath(), 'utf-8'));
// add job to the index
$index->addDocument($doc);
$index->commit();
}
它以前可以工作,但现在不再有效。