淘先锋技术网

首页 1 2 3 4 5 6 7

url : :9200/xx_index

xx_index 是索引名字

{
        "mappings": {
            "search_log" :{  //这是type
                "properties":{
                    "search_keyword" :{
                        "type" : "string"

                    },
                    "search_time" :{
                        "type" : "string"
                    },
                    "search_ip" : {
                        "type" : "ip"
                    },
                    "uid" : {
                        "type" : "integer"
                    }
                }
            }
        }
    }