Elasticsearch入门 互动版

在线工具推荐: Three.js AI纹理开发包 - YOLO合成数据生成器 - GLTF/GLB在线编辑 - 3D模型格式在线转换 - 可编程3D场景编辑器

  查询为twitter,类型为tweet,userkimchiy满足条件的10条文档信息。

curl -XGET  'http://localhost:9200/twitter/tweet/_search' -d '{
    "from" : 0, "size" : 10,
   "query" : {
        "term" : { "user" : "kimchy" }
    }
}
'

  _searchRequest Body 参数还包括其它一些,如sort、fields等

详细文档大家请看: http://www.elastic.co/guide/en/elasticsearch/reference/current/search-request-body.html

查询为twitter,类型为tweet,userkimchiy满足条件的10条文档信息。