我的同事建议对弹性字段使用非常短的名称。
目前我有如下映射:
"keyword": {
type: { type: "string" },
phrase: { type: "string" },
count: { type: "integer" }
}
但他说这需要很多地方,映射应该是:
"keyword": {
t: { type: "string" },
p: { type: "string" },
c: { type: "integer" }
}
对我来说,以这种方式混淆代码似乎很奇怪。elasticsearch不会优化它吗?在 elasticsearch 文档资源中找不到这方面的帮助。