Skip to content

Latest commit

 

History

History
44 lines (39 loc) · 940 Bytes

README.md

File metadata and controls

44 lines (39 loc) · 940 Bytes

ElasticSearch 搭建

http://localhost:5601

创建索引库

PUT study
{
   "mappings": {
      "properties": {
         "content": {
            "type": "text",
            "analyzer": "ik_max_word",
            "search_analyzer": "ik_smart"
         },
         "title": {
            "type": "text",
            "analyzer": "ik_max_word",
            "search_analyzer": "ik_smart"
         },
         "createDate": {
            "type": "long"
         }
      }
   }
}
  • study : 索引库名称
  • mappings : 查询字段
  • content : 内容
  • type : 字段类型 text(文本类型)
  • analyzer参数指定索引或搜索字段时用于 文本分析的分析器。text

详细请参考官网文档

https://www.elastic.co/guide/index.html