Match Query
比如我们要查询索引为twitter,索引类型为tweet的user为kimchy的文档记录。
curl -XGET 'http://localhost:9200/twitter/tweet/_search' -d '
{
"query" :
{
"match":{"user":"kimchy"}
}
}'
Match Query也还包括一些其它的参数:_query、operator、zero_termsquery等
{
"query" :
{
"match":{
"user":"kimchy",
"message":{
"query" : "this is a test",
"operator" : "and"
}
}
}
}
用match来查询索引为twitter,索引类型为tweet的user为kimchy的文档记录。