大家好,又见面了,我是你们的朋友全栈君。如果您正在找激活码,请点击查看最新教程,关注关注公众号 “全栈程序员社区” 获取激活教程,可能之前旧版本教程已经失效.最新Idea2022.1教程亲测有效,一键激活。
Jetbrains全家桶1年46,售后保障稳定
#列出所有索引
GET http://127.0.0.1:9200/_cat/indices?v
#删除索引
DELETE 索引名
# 条件查询
GET http://127.0.0.1:9200/索引/_search?pretty
{
“query”: {
“bool”: {
“must”: [
{
“match”: {
“tweet”: “elasticsearch”
}
},
{
“match”: {
“name”: “zhangsan”
}
}
]
}
}
}
# 复合查询
GET http://127.0.0.1:9200/索引/_search?pretty
{
“bool”: {
“must”: { “match”: { “tweet”: “elasticsearch” },
“match”: { “tweet”: “elasticsearch” } },
“must_not”: { “match”: { “name”: “mary” }},
“should”: { “match”: { “tweet”: “full text” }},
“filter”: { “range”: { “age” : { “gt” : 30 }} }
}
}
创建索引
PUT /es_index
{
“settings”: {
“analysis”: {
“normalizer”: {
“my_normalizer”: {
“type”: “custom”,
“char_filter”: [],
“filter”: [
“lowercase”,
“asciifolding”
]
}
}
}
},
“mappings”: {
“myindex”: {
“properties”: {
“Id”: {
“type”: “keyword”
},
“code”: {
“type”: “keyword”,
“normalizer”: “my_normalizer”
},
“name”: {
“type”: “text”,
“analyzer”: “ik_max_word”,
“search_analyzer”: “ik_max_word”,
“fielddata”:true,
“fields”: {“keyword”: {“type”: “keyword”}}
},
“type”: {
“type”: “keyword”
},
“formId”: {
“type”: “keyword”
},
“lastEntryESDate”: {
“type”: “date”,
“format”: “yyyy-MM-dd HH:mm:ss”
}
}
}
}
}
欢迎访问个人主页:唐悦玮的博客
发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/203964.html原文链接:https://javaforall.cn
【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛
【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...