Elasticsearch7.*字段数据类型

1、主要数据类型

  1. string类型:text,keyword(默认不会被分词),wildcard
  2. 数字类型:longintegershortbytedoublefloathalf_floatscaled_float
  3. 日期类型:date
  4. 布尔类型:boolean
  5. Binary:Binary
  6. 范围类型:integer_rangefloat_rangelong_rangedouble_rangedate_rangeip_range

2、复杂数据类型

  1. Object:单个JSON对象
  2. Nested:JSON对象数组

3、地理位置类型

  1. Geo-point
  2. Geo-shape

4、Arrays

5、Multi-fieldsedit

为不同的目的以不同的方式对同一字段建立索引通常很有用。例如,一个string字段可以映射为text用于全文搜索的字段,也可以映射为keyword用于排序或聚合的字段.大多数数据类型通过fields参数支持多字段。

参考文档:https://www.elastic.co/guide/en/elasticsearch/reference/7.x/mapping-types.html

你可能感兴趣的:(Elasticsearch)