THINKPHP6使用ElasticSearch6以上搜索引擎

2 篇文章 0 订阅

网上的很多都是讲ES5的过时的。现在ES6之后有点变动了,搞了一天一夜才搞通,现在分享出来让大家少走点弯路。首先下载ES,6以上的要JRE8以上才可以,不兼容安装不了,注意ES版本要和中文分词插件IK版本一致,不然用不了。我这边提供下载,是6.2.3版本的,已经集成IK了,下载之后解压到非网站目录就可以了。链接: https://pan.baidu.com/s/1j-MWtj46ykDMFn8ROyGA4w 提取码: 2np1 。你也可以从官网下载最新版之后安装,官网的最新版的要64位系统才可以。下载之后安装它提示JRE版本兼容问题的,不兼容安装不了。然后启动ElasticSearch服务就是在elasticsearch\bin目录里启动elasticsearch.bat文件,停止服务关掉这个即可。

然后CMD cd 命令到你的网站的目录下,目录下有composer.json的,然后执行composer require elasticsearch/elasticsearch

它会自动加载合适的PHP版本接口!

然后新建一个控制器也得,我的是放在通用模块下的。在app下新建一个model应用


namespace app\model\model;
use think\Model;
require '../vendor/autoload.php';//这里必须带
use Elasticsearch\ClientBuilder;//这里必须带

class Esseach extends Model
{


    private $client;
    // 构造函数
    public function __construct()
    {
        $params = array(
            '127.0.0.1:9200'
        );
        $this->client = ClientBuilder::create()->setHosts($params)->build();
    }

    // 创建索引
    public function index() { // 只能创建一次

$r = $this->delete_index();/*这个是用作测试的,因为你每次测试他都创建索引,所以当发生索引不存在的时候你可以注释这行,因为索引只能创建一次,所以说每次执行代码的时候都要先删除原创建的索引*/

        $r = $this->create_index();  //1.创建索引,索引就是数据库中的数据库概念

        $r = $this->create_mappings(); //2.创建文档模板,这个就是数据库中的表的概念


        $r = $this->get_mapping();


        $docs = [];
        $docs[] = ['id'=>1,'name'=>'小明','profile'=>'我做的ui界面强无敌。','age'=>23];
        $docs[] = ['id'=>2,'name'=>'小张','profile'=>'我的php代码无懈可击。','age'=>24];
        $docs[] = ['id'=>3,'name'=>'小王','profile'=>'C的生活,快乐每一天。','age'=>29];
        $docs[] = ['id'=>4,'name'=>'小赵','profile'=>'aaaaaaaaa就没有我做不出的前端页面。','age'=>26];
        $docs[] = ['id'=>5,'name'=>'小吴','profile'=>'php是最好的语言。','job'=>21];
        $docs[] = ['id'=>6,'name'=>'小翁','profile'=>'别烦我,我正在敲bug呢!','age'=>25];
        $docs[] = ['id'=>7,'name'=>'小杨','profile'=>'为所欲为,不行就删库跑路','age'=>27];

        foreach ($docs as $k => $v) {

            $r = $this->add_doc($v['id'],$v);   //3.添加文档
        }

  $r = $this->search_doc("php");  //4.搜索结果
        print_r($r['hits']['hits']);
    }

    // 创建索引
    public function create_index($index_name = 'test_ik') { // 只能创建一次
        $params = [
            'index' => $index_name,
            'body' => [
                'settings' => [
                    'number_of_shards' =>1,
                    'number_of_replicas' => 0
                ]

            ],

        ];


            return $this->client->indices()->create($params);

    }

    // 删除索引
    public function delete_index($index_name = 'test_ik') {
        $params = ['index' => $index_name];
        $response = $this->client->indices()->delete($params);
        return $response;
    }

    // 创建文档模板
    public function create_mappings($type_name = 'users',$index_name = 'test_ik') {

        $params = [
            'index' => $index_name,//这里是索引名,相当于数据库名
            'type' => $type_name,//这里是类型名,相当于表名

            'body' => [


//下面是数据类型定义,相当于数据库字段
                'properties' => [
                    'id' => [
                        'type' => 'long', // 整型
                        'index' => 'false', // 非全文搜索
                    ],


                        'name' => [
                            'type' => 'text', // 字符串型
                            'index' => 'true', // 全文搜索
                            'analyzer' => 'ik_max_word'
                        ],
                        'profile' => [
                            'type' => 'text',// 字符串型
                            'index' => 'true', // 全文搜索
                            'analyzer' => 'ik_max_word'
                        ],
                        'age' => [
                            'type' => 'integer',
                            'index' => 'false', //非 全文搜索
                        ],
                            ]

            ]

        ];

        $response = $this->client->indices()->putMapping($params);
        return $response;
    }

    // 查看映射,就是相当于数据库的数据结构
    public function get_mapping($type_name = 'users',$index_name = 'test_ik') {
        $params = [
            'index' => $index_name,
            'type' => $type_name
        ];
        $response = $this->client->indices()->getMapping($params);
        return $response;
    }

    // 添加文档
    public function add_doc($id,$doc,$index_name = 'test_ik',$type_name = 'users') {
        $params = [
            'index' => $index_name,
            'type' => $type_name,
            'id' => $id,
            'body' => $doc
        ];

        $response = $this->client->index($params);
        return $response;
    }

    // 判断文档存在
    public function exists_doc($id = 1,$index_name = 'test_ik',$type_name = 'users') {
        $params = [
            'index' => $index_name,
            'type' => $type_name,
            'id' => $id
        ];

        $response = $this->client->exists($params);
        return $response;
    }


    // 获取文档
    public function get_doc($id = 1,$index_name = 'test_ik',$type_name = 'users') {
        $params = [
            'index' => $index_name,
            'type' => $type_name,
            'id' => $id
        ];

        $response = $this->client->get($params);
        return $response;
    }

    // 更新文档
    public function update_doc($id = 1,$index_name = 'test_ik',$type_name = 'users') {
        // 可以灵活添加新字段,最好不要乱添加
        $params = [
            'index' => $index_name,
            'type' => $type_name,
            'id' => $id,
            'body' => [
                'doc' => [
                    'name' => '大王'
                ]
            ]
        ];

        $response = $this->client->update($params);
        return $response;
    }

    // 删除文档
    public function delete_doc($id = 1,$index_name = 'test_ik',$type_name = 'users') {
        $params = [
            'index' => $index_name,
            'type' => $type_name,
            'id' => $id
        ];

        $response = $this->client->delete($params);
        return $response;
    }

    // 查询文档 (分页,排序,权重,过滤)
    public function search_doc($keywords = "删库",$index_name = "test_ik",$type_name = "users",$from =0,$size = 10) {
        $params = [
            'index' => $index_name,
            'type' => $type_name,
            'body' => [
                'query' => [
                    'bool' => [//bool查询,可以把很多小的查询组成一个更为复杂的查询,
                        'should' => [// 这里should是查询profile字段包含$keywords关键词或者name字段包含$keywords关键词的文档。可以改为"must"意思是同时包含。must_not排除包含
                            [ 'match' => [ 'profile' => [
                                'query' => $keywords,
                                'boost' => 3, // 权重大
                            ]]],
                            [ 'match' => [ 'name' => [
                                'query' => $keywords,
                                'boost' => 2,
                            ]]],
                        ],
                    ],
                ],
                'sort' => ['age'=>['order'=>'desc']]
                , 'from' => $from, 'size' => $size
            ]
        ];



        $results = $this->client->search($params);
        return $results;
    }

到这里完成了,但是有个问题,就是执行的时候发现刷新好几次才有数据,有时候刷新都没有,刷新多几次才有。我也知道为毛,希望知道的人在下方留言在这里先谢谢了。希望大家都看到少走些弯路。同时也希望指正有错误的地方在下方留言,毕竟我又不是什么专家。

评论 4
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值