elasticSearch基本操作

1、查看所有索引

GET _cat/indices

  

2、创建一个新的索引

PUT /test
{
  "mappings": {
        "_doc": {
            "properties": {
                "id": {"type": "keyword"},      
                "title": {"type": "keyword"},
                "esDate": {"type": "date", "format": "yyyy-MM-dd HH:mm:ss||yyyy-MM-dd||epoch_millis"}
            }
         }  
  }
}

  

3、

elasticSearch基本操作

上一篇:子表多个数据取回其一


下一篇:AVAssetWriter视频数据编码