博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
关于IK 分词器
阅读量:5059 次
发布时间:2019-06-12

本文共 1071 字,大约阅读时间需要 3 分钟。

准备:

1 创建索引:

PUT my_index

PUT my_index2

2 先做好映射:

PUT /my_index/*/_mapping
{
"properties": {
"addTime": {
"type": "date",
"format": "strict_date_optional_time||epoch_millis"
},
"content": {
"type": "string",
"analyzer": "ik"
},
"creatorId": {
"type": "long"
},
"fileName": {
"type": "string",
"analyzer": "ik"
},
"filePath": {
"type": "string",
"index": "not_analyzed"
},
"id": {
"type": "long"
},
"lastModified": {
"type": "long"
},
"revisionCount": {
"type": "long"
},
"size": {
"type": "long"
}
}
}

3 准备数据:

PUT /my_index2/aa/1
{
"fileName": "中华人民共和国",
"content": "从重新开始hello jetty"
}

PUT /my_index/aa/1

{
"fileName": "中华人民共和国",
"content": "从重新开始hello jetty"
}

GET /my_index2/_mapping

测试:

GET /my_index/aa/_search
{
"query": {
"term": {
"fileName": "人民"
}
}
}

GET /my_index2/aa/_search

{
"query": {
"term": {
"fileName": "人民"
}
}
}

说明:

通过下面的是测试不出来的, 因为, 她已经制定了分词器为 ik,

POST /my_index/_analyze?pretty=true

{
"text": "我是中国人"
}

使用query查询的时候, 查询器必须是 term, 如果是match, 查询结果是一样的。

posted on
2017-05-24 17:03 阅读(
...) 评论(
...)

转载于:https://www.cnblogs.com/FlyAway2013/p/5981019.html

你可能感兴趣的文章
Jmeter学习系列----3 配置元件之计数器
查看>>
jQuery 自定义函数
查看>>
jq 杂
查看>>
jquery datagrid 后台获取datatable处理成正确的json字符串
查看>>
作业一
查看>>
AJAX
查看>>
ActiveMQ与spring整合
查看>>
web服务器
查看>>
2-SAT
查看>>
SQL Server 2008 下载及版本说明
查看>>
【转】div居中代码 DIV水平居中显示CSS代码
查看>>
git 基础使用
查看>>
死磕mysql(6)
查看>>
LR录制https协议设置方法
查看>>
删除xcode 里的多余证书
查看>>
Note:Spring Roo 1.2.1调通的第一个例子
查看>>
hdu 1529 Cashier Employment 差分约束系统
查看>>
Select Option Specifiers——Select 选项指定器
查看>>
A1023 瓷砖铺放
查看>>
django中间件
查看>>