Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

Sample code for Elasticsearch Mapping

2025-01-16 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Servers >

Share

Shulou(Shulou.com)05/31 Report--

This article mainly introduces the sample code of Elasticsearch Mapping, which is very detailed and has a certain reference value. Friends who are interested must finish it!

Elasticsearch Mapping sample PUT my_index {/ / create my_index index "mappings": {"user": {/ / create type "_ all": {"enabled": false}, / / Disable the _ all meta field for the user mapping type "properties": {"title": {"type": "string"} "name": {"type": "string"}, "age": {"type": "integer"}}, "blogpost": {"properties": {"title": {"type": "string"}, "body": {"type": "string"} "user_id": {"type": "string", "index": "not_analyzed"}, "created": {"type": "date", "format": "strict_date_optional_time | | epoch_millis"}

Type: the data type of the field, such as string and date

A simple type like string, date, long, double, boolean or ip.

A type which supports the hierarchical nature of JSON such as object or nested.

Or a specialised type like geo_point, geo_shape, or completion.

Index: whether the field should be searched as full text (analyzed), or as an exact value (not_analyzed), or not searchable at all (no)

Analyzer: determines which parser is used in full-text fields when indexing and or searching.

The above is all the content of this article "sample Code of Elasticsearch Mapping". Thank you for reading! Hope to share the content to help you, more related knowledge, welcome to follow the industry information channel!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Servers

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report