我已根据文档安装了弹性搜索 http://book.cakephp.org/3.0/en/elasticsearch.html
我收到错误"未知的存储库类型" Elastic"。确保在尝试使用之前注册了一个类型。" 通过添加$ this-> loadModel(' test',' Elastic');
答案 0 :(得分:0)
请确保您已通过Composer安装了Elasticsearch插件。
然后在config/bootstrap.php
中添加一行来加载插件。
Plugin::load('Cake/ElasticSearch', ['bootstrap' => true]);
*如果全局安装了Composer,请运行:
composer require cakephp/elastic-search "@stable"
在您的应用程序根目录中。希望这会有所帮助!