admin 管理员组

文章数量: 887021

原因:text类型不支持求平均值,改为float

PUT

http://localhost:9201/shopping/_mapping

{
    "properties":{
        "title":{
            "type": "text", // text 文本类型,可以分词
            "index": true
        },
        "category": {
            "type":"text", // keyword 关键词,必须是完整的,不能分词
            "index": true
        },
        "images": {
            "type": "text",
            "index": true
        },
        "price":{
            "type":"float",
            "index":true
        }
    }
}

本文标签: Type price Field text avg