如何在elasticsearch中设置_id的映射

时间:2016-06-09 12:53:40

标签: elasticsearch

我正在创建一个新索引' 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){ 
     .............
});

0 个答案:

没有答案