这是数据
{
"username": "runrun",
"channel": "all",
"expire": NumberLong("1308183908743"),
"_id": ObjectId("4df93f54e07324af47000001")
}
这是我以前用来删除记录的代码
db.collection('seesion',function(err, collection){
collection.remove({
"expire": {"$lte": Date.now()}
},function(err, removed){
console.log(removed);
});
});
我想删除已过期的会话。问题是,代码不起作用,也许与numberLong有关?
答案 0 :(得分:18)
看起来你拼错了“会话”(作为“会话”)。