摘要: 一,用systemctl管理es: 1,创建service配置文件: [root@iZ2zejc9t0hf6pnw6sewrxZ config]# vi /lib/systemd/system/elasticsearch.service service文件代码: [root@blog config] 阅读全文
posted @ 2024-07-11 17:33 刘宏缔的架构森林 阅读(217) 评论(0) 推荐(0)
摘要: 一,php代码 1,用composer安装elasticsearch库 [lhdop@blog dignews]$ composer require elasticsearch/elasticsearch 2, 创建索引: //创建索引 public function create(){ //初始化 阅读全文
posted @ 2024-07-11 16:26 刘宏缔的架构森林 阅读(54) 评论(0) 推荐(0)
摘要: 一,创建索引 1,简单创建索引: [lhdop@blog ~]$ curl -X PUT "localhost:9200/my_suoyin" {"acknowledged":true,"shards_acknowledged":true,"index":"my_suoyin"} 2, 查看创建索引 阅读全文
posted @ 2024-07-11 14:44 刘宏缔的架构森林 阅读(530) 评论(0) 推荐(0)
摘要: 一,安装插件 1,查看已安装的插件: [lhdop@blog ~]$ curl -X GET "localhost:9200/_cat/plugins?v&s=component" name component version 2,从命令行安装smartcn分词插件: [lhdop@blog bin 阅读全文
posted @ 2024-07-11 11:53 刘宏缔的架构森林 阅读(374) 评论(0) 推荐(0)
摘要: 一,测试分词命令: 1,查看已安装的插件: [lhdop@blog ~]$ curl -X GET "localhost:9200/_cat/plugins?v&s=component" name component version 2,standard分词 [lhdop@blog ~]$ curl 阅读全文
posted @ 2024-07-11 11:17 刘宏缔的架构森林 阅读(2183) 评论(0) 推荐(0)
摘要: 一,安装需要的库 1,包的地址: https://packagist.org/packages/elasticsearch/elasticsearch 2,文档地址: https://www.elastic.co/guide/en/elasticsearch/client/php-api/curre 阅读全文
posted @ 2024-07-11 09:22 刘宏缔的架构森林 阅读(164) 评论(0) 推荐(0)