我希望MongoDB在%seconds传递后清除其集合中的数据。我正在设置索引,但是收集在一段时间后没有被清除,所有文档仍然存在。
我做错了什么?
数据库版本:3.2
设定指数:
db.collection('history').ensureIndex(
{ '_id': 1, 'created': 1 },
{ unique: true, background: true, w: 1, expireAfterSeconds: 60}
);
// or
db.collection('history').createIndex(
{ '_id': 1, 'created': 1 },
{ unique: true, background: true, w: 1, expireAfterSeconds: 60}
);
// history document
var _history = {
_id: new ObjectId(),
created: new Date()
};
收藏历史,索引:
var historyCollectionIndex = [
{
"v" : 1,
"key" : {
"_id" : 1
},
"name" : "_id_",
"ns" : "guardian_dev.history"
},
{
"v" : 1,
"unique" : true,
"key" : {
"_id" : 1,
"created" : 1
},
"name" : "_id_1_created_1",
"ns" : "guardian_dev.history",
"background" : true,
"expireAfterSeconds" : 60
}
]
与创建索引相关的其他问题。
现在,可能会发生两个条目具有相同的创建值,因此,mongo现在抛出错误的E11000重复键错误集合。
是否可以添加created和expireAfterSeconds,但是创建的不必是uniq?
答案 0 :(得分:5)
根据http://www.d-logic.net/nfc-rfid-reader-sdk/:
TTL索引是单个字段索引。复合索引不支持TTL属性。
如果删除_id: 1
索引,而只是使用created
,那么它应该按预期行事
答案 1 :(得分:1)
根据documentation,TTL索引是单个字段索引。复合索引不支持TTL属性。您应该按如下方式创建索引:
db.collection('history').ensureIndex(
{'created': 1 },
{ unique: true, background: true, w: 1, expireAfterSeconds: 60}
);
我测试了它,这个索引与你问题中的索引不同,正确地清除了记录。