码迷,mamicode.com
首页 > 其他好文 > 详细

ES_1.1查询接口

时间:2014-12-30 13:42:46      阅读:214      评论:0      收藏:0      [点我收藏+]

标签:

ElasticSearch查询功能包括query和filter,使用RestAPI:_search方法进行查询。

Search

参数

  • l Timeout:超时时间
  • l From:等于offset
  • l Size:返回长度。
  • l Search_type:查询类型。
  • l Query_cache1.4之后的版本。是否使用查询缓存。
  • l Terminate_after1.4之后的版本。一个Shard可以在获取到多少条数据后,停止查询。

TODO:Shard query cache.

示例

1,查询匹配this is a test的document。

curl ‘localhost:9200/idx/_search?pretty‘ -d ‘{
    "query": {
	"match" : {
           "message" : "this is a test"
        }
    }
‘}

2,指定需要返回的字段


curl ‘localhost:9200/idx/_search?pretty‘ -d ‘{
    "query": {
	"match" : {
           "message" : "this is a test"
        },
        "_source" : ["name"]
    }
‘}

ES_1.1查询接口

标签:

原文地址:http://my.oschina.net/pangyangyang/blog/362218

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!