es加入ik分词器创建索引和查询

版权声明:本文为博主原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。
本文链接: https://blog.csdn.net/caoxuecheng001/article/details/102685291

http://localhost:9200/blog put方式

{
	"mappings":{
		"hello":{
			"properties":{
				"id":{
					"type":"long",
					"store":true
					
					
				},
				"title":{
					"type":"text",
					"store":true,
					"analyzer":"ik_smart"
				},
				"content":{
				"type":"text",
				"store":true,
				"analyzer":"ik_smart"
				}
			}
		}
	}
}

查询

http://localhost:9200/blog/hello/_search   post方式

{
	"query":{
		"query_string":{
			"default_field":"content",
			"query":"小米是中国的"
		}
	}
}

猜你喜欢

转载自blog.csdn.net/caoxuecheng001/article/details/102685291
今日推荐