gpt4 book ai didi

node.js - MongoDB多个不区分大小写的字段唯一索引,错误信息没有意义

转载 作者:太空宇宙 更新时间:2023-11-04 01:42:13 25 4
gpt4 key购买 nike

我有一个使用以下索引创建的集合。只有名称是字符串类型,并且应以不区分大小写的方式进行检查。只允许“A”或“a”

db.collection('myCollection').createIndex(
{ "name": 1, "type": 1, "ref": 1 }, { unique: true, collation: { locale: 'en', strength: 1 }});
})
}

我已经测试过,它可以工作,但我不明白错误消息:

{
"errorMessage": "E11000 duplicate key error collection: my.myCollection index: name_1_type_1_ref_1 dup key: { : \"O1XO\u0006\u000c)MN11\", : \")MB1O1FG1\", : null }"
}

dup key 部分是什么意思?这是正确的方法吗?

最佳答案

您的 mongodb 服务器版本是什么?我尝试 mongodb 4.0 它的工作;

 //mongodb version 4.0

db.createCollection("TestIndex");

db.getCollection('TestIndex').createIndex(
{ "name": 1, "type": 1, "ref": 1 }, { unique: true, collation: { locale: 'en', strength: 2 }});

db.getCollection('TestIndex').insert({ "name" : "A",
"type" : "B",
"ref" : "C"});

db.getCollection('TestIndex').insert({ "name" : "A",
"type" : "B",
"ref" : "c"});
//E11000 duplicate key error collection: test_db.TestIndex index: name_1_type_1_ref_1 dup key: { : ")", : "+", : "-" }

db.getCollection('TestIndex').drop();

db.createCollection("TestIndex");
db.getCollection('TestIndex').createIndex(
{ "name": 1, "type": 1, "ref": 1 }, { unique: true, collation: { locale: 'en', strength: 3 }});

db.getCollection('TestIndex').insert({ "name" : "A",
"type" : "B",
"ref" : "C"});
//Inserted 1 record(s) in 11ms
db.getCollection('TestIndex').insert({ "name" : "A",
"type" : "B",
"ref" : "c"});

关于node.js - MongoDB多个不区分大小写的字段唯一索引,错误信息没有意义,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52535858/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com