我在 mongdb 中调用存储函数时遇到了一些困难。我是 mongo 的新手。
[编辑]:我的函数存储在 mongodb
function() {
var cndTime = new Date().getTime() - (3600*1000*24*2); // condition
db.urls.find(needParse: false).forEach(function(item){
if(item.date < cndTime) // check
db.urls.update({_id: item._id}, {$set: { needParse: true }}); // update field
});
}
我要问的是如何使用reactivemongo 或本机API 调用这个函数。