我正在尝试使用 cakephp 实现 Lucene 并遵循本指南 http://jamienay.com/2010/01/zend_search_lucene-datasource-for-cakephp/
收到此错误
ConnectionManager::loadDataSource - 无法导入 DataSource 类 .ZendSearchLuceneSource
我已将供应商文件放在 app/vendors/Zend/
在 bootstrap.php 中添加了这个
ini_set('include_path', ini_get('include_path') . ':' . CAKE_CORE_INCLUDE_PATH . DS . '/vendors');
/**
* AutoLoading Zend Vendor Files
*/
function __autoload($path) {
if(substr($path, 0, 5) == 'Zend_') {
include str_replace('_', '/', $path) . '.php';
}
return $path;
}
将此添加到数据库配置中
var $zendSearchLucene = array(
'datasource' => 'ZendSearchLucene',
'indexFile' => 'lucene', // stored in the cache dir.
'driver' => '',
'source' => 'search_indices'
);
添加创建了一个名为 search.php 的模型
<?php
class Search extends AppModel {
var $useDbConfig = 'zendSearchLucene';
}
?>
现在我也像这样创建了一个名为 search 的控制器
<?php
class SearchController extends AppController {
var $name = 'Search';
function index(){
}
}
?>
当我访问网站/搜索时,我得到了那个错误。