store

Besides  indexing  the  values  of   a  field,  you  can  also  choose  to store the  original field  value  for  later  retrieval .  Users  with  a  Lucene  background  use  stored  fields  to choose  which  fields  they  would  like  to  be  able  to  return  in  their  search  results.  In fact the _source field  is a stored field. 

In  Elasticsearch,  setting  individual   document  fields  to  be  stored  is  usually  a  false optimization.  The  whole  document  is  already  stored  as  the _source field.  It  is almost  always  better  to  just  extract  the  fields  that  you  need  using the _source parameter. 


除了索引字段的值,还可以选择原始字段值存储起来,供以后检索。Lucene背景的用户使用存储字段选择哪些字段可以在搜索结果中返回。事实上_source字段是一个存储字段。

在Elasticsearch,设置个人文档字段存储通常是一个虚假的优化。整个文档已经存储为_source字段。提取字段,可以使用_source参数。


你可能感兴趣的:(elasticsearch)