当前位置:  开发笔记 > 编程语言 > 正文

Yii2-elasticsearch 怎么用啊?

想把自己的博客用上ElasticSearch搜索,用的是Yii2-elasticsearch扩展搞了半天不会用,没搞明白elasticsearch是个怎么回事,是要把Mysql中的数据弄到ES中去吗?难道每次都要到msql中去把数据找出来,
想把自己的博客用上 ElasticSearch 搜索,用的是 Yii2-elasticsearch 扩展

搞了半天不会用,没搞明白 elasticsearch 是个怎么回事,是要把 Mysql 中的数据弄到 ES 中去吗?

难道每次都要到msql中去把数据找出来,再一个一个赋值给 ES 吗?

$posts = Post::find()->all();

$postElastic = new PostElastic();
$postElastic->attributes = ['name' => $postElastic[0]->name];

要像上面这样嘛?那也太蛋疼了吧

但是直接 Contents::find()->all() 查出来的也没有数据,

class Contents extends \yii\elasticsearch\ActiveRecord
{    
    public function attributes()
    {
        return ['id', 'title', 'slug', 'created_at', 'text', 'type', 'status'];
    }

}

回复内容:

想把自己的博客用上 ElasticSearch 搜索,用的是 Yii2-elasticsearch 扩展

搞了半天不会用,没搞明白 elasticsearch 是个怎么回事,是要把 Mysql 中的数据弄到 ES 中去吗?

难道每次都要到msql中去把数据找出来,再一个一个赋值给 ES 吗?

$posts = Post::find()->all();

$postElastic = new PostElastic();
$postElastic->attributes = ['name' => $postElastic[0]->name];

要像上面这样嘛?那也太蛋疼了吧

但是直接 Contents::find()->all() 查出来的也没有数据,

class Contents extends \yii\elasticsearch\ActiveRecord
{    
    public function attributes()
    {
        return ['id', 'title', 'slug', 'created_at', 'text', 'type', 'status'];
    }

}
推荐阅读
罗文彬2502852027
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有