es结果集

{ 
took: 2,
timed_out: false,
_shards: { total: 5, successful: 5, failed: 0 },
hits: 
{ total: 4,
max_score: 4.3100996,
hits: [ [Object], [Object], [Object], [Object] ] } }

took:耗时,单位毫秒
timed_out:是否超时
—shards:shards代表索引分片,es可以把一个完整的索引分成多个分片,这样的好处是可以把一个大的索引拆分成多个,分布到不同的节点上。构成分布式搜索。
hits:结果集
total:命中结果数
max_sore:评分
hits:结果集具体数据


结果集具体数据

{ _index: 'bank',
  _type: 'account',
  _id: '472',
  _score: 4.3100996,
  _source: 
   { account_number: 472,
     balance: 25571,
     firstname: 'Lee',
     lastname: 'Long',
     age: 32,
     gender: 'F',
     address: '288 Mill Street',
     employer: 'Comverges',
     email: '[email protected]',
     city: 'Movico',
     state: 'MT' } }

_index:索引
_type:类型
_id:id
_score:评分
_source:具体数据

参考:http://www.jianshu.com/p/f2b642bccfe6

你可能感兴趣的:(es结果集)