赞
踩
127.0.0.1:9200/peoples/_search搜索
{
"query":{
"match_phrase":{//全部匹配/"match模糊匹配"
"title":"你是谁谁"
}
}
}..
{
"query":{
"multi_match":{//多模糊匹配
"query":"xxxx",
"fields":["auther","age"]//多字段
}
}
}
..
{
"query":{
"query_string":{//语法查询
"query":"(xxx AND xxxx) OR xxx"
}
}
}
{
"query":{
"term":{//字段查询
"字段名字":""xxxx"
}
}
}
.......
{
"query":{
"range":{//范围查询
"字段名字":{
"gte":1000,//大于等于
"lte":1433//小于等于
}
}
}
}
.....时间 now现在
filter context 只有yes/no
{
"query":{
"bool":{//boolean类型
"filter":{
"term":{
"字段名":"要查的内容"
}
}
}
}
}.....
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。