我正在创建一个新索引' collegedatabase'类型' studenttable'我的身份就像123,1234,12345等; 当我试图获得id为1234的记录时,它总是返回123的记录。 我试图为' _id'设置映射。字段如下:
{
"studenttable" : {
"_id" : {
"index" : "not_analyzed"
}
}
}
仍然显示相同的结果。 任何人都可以帮我这个。 我这样使用(来自node.js)
client.search({
index: 'collegedatabase',
type: 'studenttable',
id: req.body.sid
},function(err,resp){
.............
});