elasticsearch简单的增删改查与高亮显示
2021/4/13 18:25:22
本文主要是介绍elasticsearch简单的增删改查与高亮显示,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
高亮显示
public function search_doc() { $where='图形'; $es = new ES('es'); $index_name = "es"; $type_name = "es"; $body = [ 'query' => [ 'bool' => [ 'should' => [ [ 'match' => [ // 搜索的字段名 'title' => [ //搜索的关键字 'query' => $where, 'boost' => 4, // 权重大 ] ], ], [ 'match' => [ 'content' => [ 'query' => $where, 'boost' => 3, // 权重大 ] ], ], ], ] ]]; $response= $es->search_doc($index_name, $type_name, $body); $data = array_column($response,"hits"); $data = array_column($data[0],"_source"); foreach ($data as $key => &$val){ $val['title']=str_replace($where,"<span style='color: red'>$where</span>",$val['title']); } //可以将数据发送到视图 print_r($data);
简单的增删改查
<?php namespace app\es\controller; use app\common\lib\ES; use NunoMaduro\Collision\Highlighter; //use NunoMaduro\Collision\Contracts\Highlighter; use think\Controller; use think\Db; use think\Exception; use think\Request; use Elasticsearch\ClientBuilder; class Esone extends Controller { /** * 显示资源列表 * * @return \think\Response */ public function index() { //创建索引 索引名称不能重复 否则报错 $es = new ES('es'); //你要创建的索引名称 $index_name = "es1"; $es->create_index($index_name); } //添加数据 public function create() { // $es = new ES('es'); $params = [ 'index' => "es1", 'id' => '1', 'type' => "article", "body" => [ "title" => "我是第一次添加的数据article1", 'desn' => "我是第一次添加的数据desn1"] ]; $es->add_doc($params); } // 根据id修改es中的数据 public function update() { // $es = new ES('es'); $params = [ 'index' => "es1", 'type' => "article", 'id' => "1", "body" => [ "doc" => [ "title" => "6100万颗心的共同记忆 再次C位亮相,闪耀全球!", "desn" => "刚刚过去的这个清明节,与往年一样,有人凭寄哀思,有人缅怀忠魂。但也有一些瞬间,让人记起久久不能释怀,给这个特殊节气增添了一些格外不同的味道。" ] ] ]; $es->update_doc($params); } //获取文档 搜索数据 public function selects() { $es = new ES('es'); $a = $es->get_doc('1', 'es1', 'article'); dump($a); } //删除 根据id删除数据 public function delete() { // $es = new ES('es'); $a = $es->delete_doc('1', 'es1', 'article'); //删除成功 dump($a); } //表单实现数据添加 public function add() { //渲染视图 return view('inex'); } public function addData(Request $request) { //接受数据 $data = $request->param(); //验证 //添加数据 //数据库 try { // $data = \app\es\model\Es::create($data); //将数据添加到es中 $es = new ES('es'); $params = [ //索引名 'index' => "es", //相当于数据库 'type' => "es", //id 'id' => $data['id'], "body" => [ "title" => $data['title'], "content" => $data['content'], "desn" => $data['desn'], ] ]; $es->add_doc($params); } catch (Exception $exception) { return join(['code' => 200, 'msg' => $exception->getMessage(), 'data' => ""]); } return join(['code' => 200, 'msg' => '添加成功', 'data' => $data]); } //查询数据 一条数据 public function select(Request $request) { //要搜索的id值 $id = '5'; $es = new ES('es'); //查询数据 $a = $es->get_doc($id, 'es', 'es'); print_r($a); } public function search_doc() { $where='图形'; $es = new ES('es'); $index_name = "es"; $type_name = "es"; $body = [ 'query' => [ 'bool' => [ 'should' => [ [ 'match' => [ // 搜索的字段名 'title' => [ //搜索的关键字 'query' => $where, 'boost' => 4, // 权重大 ] ], ], [ 'match' => [ 'content' => [ 'query' => $where, 'boost' => 3, // 权重大 ] ], ], ], ] ]]; $response= $es->search_doc($index_name, $type_name, $body); $data = array_column($response,"hits"); $data = array_column($data[0],"_source"); foreach ($data as $key => &$val){ $val['title']=str_replace($where,"<span style='color: red'>$where</span>",$val['title']); } //可以将数据发送到视图 print_r($data); } }
这篇关于elasticsearch简单的增删改查与高亮显示的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-23增量更新怎么做?-icode9专业技术文章分享
- 2024-11-23压缩包加密方案有哪些?-icode9专业技术文章分享
- 2024-11-23用shell怎么写一个开机时自动同步远程仓库的代码?-icode9专业技术文章分享
- 2024-11-23webman可以同步自己的仓库吗?-icode9专业技术文章分享
- 2024-11-23在 Webman 中怎么判断是否有某命令进程正在运行?-icode9专业技术文章分享
- 2024-11-23如何重置new Swiper?-icode9专业技术文章分享
- 2024-11-23oss直传有什么好处?-icode9专业技术文章分享
- 2024-11-23如何将oss直传封装成一个组件在其他页面调用时都可以使用?-icode9专业技术文章分享
- 2024-11-23怎么使用laravel 11在代码里获取路由列表?-icode9专业技术文章分享
- 2024-11-22怎么实现ansible playbook 备份代码中命名包含时间戳功能?-icode9专业技术文章分享