Skip to content

Instantly share code, notes, and snippets.

View yinchunxiang's full-sized avatar
💭
coding

yinchunxiang yinchunxiang

💭
coding
View GitHub Profile
"_source": { "include": "", "exclude":""}
curl -XPOST 'localhost:9200/bank/_search?pretty' -d '
{
"query": {
"filtered": {
"query": { "match_all": {} },
"filter": {
"range": {
"balance": {
"gte": 20000,
"lte": 30000
# match
curl -XPOST --user superuser:Adm1n 'http://localhost:9200/estest/table1/_search?pretty' -d '
{
"query" : {
"match" : {
"sex" : "term1 term2"
}
}
}'