0
点赞
收藏
分享

微信扫一扫

elasticsearch中的doc_values

鱼满舱 2023-04-12 阅读 47


PUT/music/_mapping/song{
    “properties”: {
        “tag”: {
            “type”: “string”,
            “index”: “not_analyzed”,
            “doc_values”: true
        }
    }
}

这个就会使用磁盘存储这个字段,而不是存储在内存中。


举报

相关推荐

0 条评论