ElasticSearch(중국어 검색)source 요약
4098 단어 ElasticSearch
GET /lib4/user/_search
{
"query": {
"match_all": {}
},
"_source": {
"includes": ["name" ,"address"],
"excludes": ["age" , "birthday" ]
}
}
바로 결과를 보겠습니다.
{
"took" : 5,
"timed_out" : false,
"_shards" : {
"total" : 3,
"successful" : 3,
"skipped" : 0,
"failed" : 0
},
"hits" : {
"total" : 5,
"max_score" : 1.0,
"hits" : [
{
"_index" : "lib4",
"_type" : "user",
"_id" : "2",
"_score" : 1.0,
"_source" : {
"address" : " ",
"name" : " "
}
},
{
"_index" : "lib4",
"_type" : "user",
"_id" : "4",
"_score" : 1.0,
"_source" : {
"address" : " ",
"name" : " "
}
},
{
"_index" : "lib4",
"_type" : "user",
"_id" : "5",
"_score" : 1.0,
"_source" : {
"address" : " ",
"name" : " "
}
},
{
"_index" : "lib4",
"_type" : "user",
"_id" : "1",
"_score" : 1.0,
"_source" : {
"address" : " ",
"name" : " "
}
},
{
"_index" : "lib4",
"_type" : "user",
"_id" : "3",
"_score" : 1.0,
"_source" : {
"address" : " ",
"name" : "lisi"
}
}
]
}
}
GET /lib4/user/_search
{
"_source": {
"includes": "addr*" ,
"excludes": ["name", "bir*"]
},
"query": {
"match_all": {}
}
}
#
{
"took" : 2,
"timed_out" : false,
"_shards" : {
"total" : 3,
"successful" : 3,
"skipped" : 0,
"failed" : 0
},
"hits" : {
"total" : 5,
"max_score" : 1.0,
"hits" : [
{
"_index" : "lib4",
"_type" : "user",
"_id" : "2",
"_score" : 1.0,
"_source" : {
"address" : " "
}
},
{
"_index" : "lib4",
"_type" : "user",
"_id" : "4",
"_score" : 1.0,
"_source" : {
"address" : " "
}
},
{
"_index" : "lib4",
"_type" : "user",
"_id" : "5",
"_score" : 1.0,
"_source" : {
"address" : " "
}
},
{
"_index" : "lib4",
"_type" : "user",
"_id" : "1",
"_score" : 1.0,
"_source" : {
"address" : " "
}
},
{
"_index" : "lib4",
"_type" : "user",
"_id" : "3",
"_score" : 1.0,
"_source" : {
"address" : " "
}
}
]
}
}
정렬
GET /lib4/user/_search
{
"query": {
"match_all": {}
},
"sort": {
"age": {"order":"asc"}
}
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
spring-data-elasticsearch 페이지 조회부록: 1. 이름에서 알 수 있듯이QueryBuilder는 검색 조건, 필터 조건을 구축하는 데 사용되고 SortBuilder는 정렬을 구축하는 데 사용된다. 예를 들어 우리는 어느 위치에서 100미터 범위 내의 모...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.