Elasticsearch-映射
生活随笔
收集整理的這篇文章主要介紹了
Elasticsearch-映射
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
核心簡單域類型
Elasticsearch 支持 如下簡單域類型:
- 字符串: string
- 整數 : byte, short, integer, long
- 浮點數: float, double
- 布爾型: boolean
- 日期: date
查看映射
GET /website/_mapping/blog GET /website/_mapping {"website": {"mappings": {"blog": {"properties": {"date": {"type": "date","format": "yyyy/MM/dd HH:mm:ss||yyyy/MM/dd||epoch_millis"},"tags": {"type": "text","fields": {"keyword": {"type": "keyword","ignore_above": 256}}},"text": {"type": "text","fields": {"keyword": {"type": "keyword","ignore_above": 256}}},"title": {"type": "text","fields": {"keyword": {"type": "keyword","ignore_above": 256}}},"views": {"type": "long"}}}}} }總結
以上是生活随笔為你收集整理的Elasticsearch-映射的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: Android Gradle(三)Gro
- 下一篇: legend---十二、js中的js语句