我有redis
客户端mongodb
,我想加速我的数据库,为此我从redis
缓存中获取用户详细信息并希望将其保存到mongodb
使用中node.js
。
你的回答对我很有帮助。
client.smembers('login',function(err,obj){
if(obj.length === 0)
callback(obj);
obj.forEachDone(function(reply,done){
console.log(reply);
client.hgetall(reply,function(err,value){
value.login_value = decodeURI(value.login_value);
done(value);
});
},this,function(objArr){
objArr.sort(utils.compare);
console.log(objArr);
});
});