#设置映射
PUT /test
{
"settings": {"index.refresh_interval": "1s"},
"mappings": {
"properties": {
"id": {
"type": "long"
},
"name": {
"type": "keyword"
}
}
}
}添加几条测试数据后,即可通过以下方法实现需求
#同时具备
GET /test/_search
{
"query": {
"bool": {
"must": [
{
"term": {
"name": "AA"
}
},
{
"term": {
"name": BBB"
}
},
{
"term": {
"name": "CCC"
}
},
{
"term": {
"name": "DDD"
}
}
]
}
}
}#任意均可
GET /test/_search
{
"query": {
"bool": {
"must": [
{
"terms": {
"name": ["AAA","BBB"]
}
}
]
}
}
}无论从事什么行业,只要做好两件事就够了,一个是你的专业、一个是你的人品,专业决定了你的存在,人品决定了你的人脉,剩下的就是坚持,用善良專業和真诚赢取更多的信任。