ElasticSearch基本实操(1)

2020-05-29 00:00:00 索引 查询 字段 属性 分词

#ElasticSearch基本实操

简单操作

创建索引,并设置分片数,及副本数据

PUT/lib/{
    "settings": {
        "index": {
            "number_of_shards": 3,
            "number_of_replicas": 0
        }
    }
}

相关文章