关于IK分词器
参考 加入Ik分词器的方法:https://blog.csdn.net/weixin_44364444/article/details/125758975
基本配置
支持thinkPHP,laravel,webman等常用框架,需要创建配置文件elasticsearch.php ,放到config/目录下。
配置内容如下所示:
return [
/** 节点列表 */
'nodes' => ['127.0.0.1:9200'],
/** 用户名 */
'username'=>'',
/** 密码 */
'password'=>'',
];
基本用法
实例化客户端
$client = new \Xiaosongshu\Elasticsearch\ESClient();
使用方法
['192.168.101.170:9200'],
/** 用户名 */
'username' => '',
/** 密码 */
'password' => '',
]);
/** 获取表结构 */
$result = $client->getMap(['index']);
/** 删除索引 */
$client->deleteIndex('index');
/** 如果不存在index索引,则创建index索引 */
if (!$client->IndexExists('index')) {
/** 创建索引 */
$client->createIndex('index', '_doc');
}
/** 创建表 */
$result = $client->createMappings('index', '_doc', [
'id' => ['type' => 'long',],
'title' => ['type' => 'text', "fielddata" => true,],
'content' => ['type' => 'text', 'fielddata' => true],
'create_time' => ['type' => 'text'],
'test_a' => ["type" => "integer"],
'test_b' => ["type" => "rank_feature", "positive_score_impact" => false],
'test_c' => ["type" => "rank_feature"],
'name' => ['type' => 'text', "fielddata" => true,],
'age' => ['type' => 'integer'],
'sex' => ['type' => 'integer'],
]);
/** 批量插入数据链式操作 */
$result = $client->table('index', '_doc')->insertAll([
[
'id' => rand(1, 99999),
'title' => '天有不测风云',
'content' => '月有阴晴圆缺',
'create_time' => date('Y-m-d H:i:s'),
'test_a' => rand(1, 10),
'test_b' => rand(1, 10),
'test_c' => rand(1, 10),
'name' => '张三',
'age' => 27,
'sex' => 1
]
]);
/** 调用elasticsearch原生方法 */
$params = [
'index' => 'my_index',
'type' =>"_doc",
'id' => "demo",
];
/** 使用原生方法统计满足某条件的数据 */
$result = $client->count($params);
/** 使用原生方法判断是否存在某一条数据 */
$result = $client->exists($params);
/** 查询数据链式操作 */
$result = $client
/** 设置表名 */
->table('index','_doc')
/** must限制条件 */
->where(['title','=','测试'])
/** whereIn查询 */
->whereIn('age',[28])
/** whereNotIn查询 */
->whereNotIn('age',[27,29])
/** should限制条件 当must和should冲突的时候,must条件优先 */
->orWhere(['test_a','>',8])
/** 排序 */
->orderBy('test_a','asc')
/** 分页 */
->limit(0,10)
/** 筛选查询字段 */
->select(['name','age'])
/** 按字段分组 */
->groupBy(['age','sex'])
/** 聚合查询 */
->sum(['age'])
/** 执行查询操作 */
->getAll();
/** 聚合查询链式操作 */
$result = $client->table('index','_doc')->max(['age'])->getAll();
/** 获取所有数据 */
$result = $client->table('index','_doc')->getAll();
/** 根据条件更新所有数据链式操作 */
$result = $client->table('index','_doc')->where(['test_a','>',2])->updateAll(['name'=>'陈圆圆']);
/** 根据条件删除数据链式操作 */
$result = $client->table('index','_doc')->where(['test_a','>',2])->deleteAll();
/** 获取所有的index索引 */
$result = $client->getIndex(['index']);
/** 使用id更新数据 */
$result = $client->table('index','_doc')->updateById('kmXADJEBegXAJ580Qqp6',['content'=>'今天你测试了吗']);
/** 使用id 删除数据 */
$result = $client->table('index','_doc')->deleteByIds(['kmXADJEBegXAJ580Qqp6']);
/** 使用id查询数据 */
$result = $client->table('index','_doc')->findById('kmXADJEBegXAJ580Qqp6');
/** 使用id批量查询 */
$result = $client->table('index','_doc')->getByIds(['kmXADJEBegXAJ580Qqp6']);
/** 添加脚本 */
$script = <<addScript('update_content',$script);
/** 添加脚本 */
$result = $client->addScript('update_content2',"(doc['content'].value)+'_'+'abcdefg'");
/** 获取脚本内容 */
$result = $client->getScript('update_content');
/** 使用脚本查询 */
$result = $client->table('index','_doc')->withScript('update_content11')->getAll();
/** 删除脚本*/
$result = $client->deleteScript('update_content');
/** 原生查询 */
$result = $client->query([
'index'=>'index',
'type'=>'_doc',
'body'=>[
'query'=>[
'bool'=>[
'must'=>[
[
'match_phrase'=>[
'title'=>'风云'
],
],
[
'script'=>[
'script'=>"doc['content'].size() != 0"
]
]
]
]
]
]
]);
/** 打印处理 结果*/
print_r($result);
本文共 个字数,平均阅读时长 ≈ 分钟,您已阅读:0时0分0秒。
649494848