我需要一个异步包装器,用于由 db 查询备份的 redis 查询。如果redis查询失败,我想做db查询。如果db查询成功,我想在返回之前将返回的数据添加到redis中。我需要该函数(希望是对象上的几个此类方法之一)来返回一个承诺,因为它将在 node.js 中被调用。我正在使用蓝鸟承诺库,并使用它来承诺 redis。我正在为数据库使用 mongo-gyro,它也是基于蓝鸟的。这两个都独立工作。
任何帮助都深表感谢 - 甚至是伪代码 - 尤其是。错误处理
function get_something(key){
redis.get(key).done(function (res){
if (null !== res){
return res; // how do I return a promise here?
}
})
.done(function (res){
db.find({'_id:key'}).done(function (res){
if (null !== res){
redis.set(key,result) // set db value in redis
.then(function(){
return res; //how do I return a promise here?
})
.catch()...?
return res; // how do I return a promise here?
}
})
.catch...?
};
更新:下面的函数有效,最后显示来自 redis 或 mongo 的数据。但是 - 到目前为止,我一直未能成功地将其转换为类上的方法,该类返回要返回给 node.js 处理程序的承诺。注意 - 我需要添加“绑定”以捕获数据源
var oid = '+++++ test oid ++++++'
var odata = {
'story': 'once upon a time'
}
var rkey = 'objects:'+ oid
redis.getAsync(rkey).bind(this).then(function(res){
if(res === null){
this.from = 'db' // we got from db
return db.findOne('objects',{'_id':oid})
}
data = JSON.parse(res)
this.from = 'redis' // we got from redis
return data
})
.then(function(res){
if(res !== null && this.from == 'db'){
data = JSON.stringify(res)
redis.setAsync(rkey,data)
}
return res
})
.then(function(res){ // at this point, res is not a promise
console.log('result from ' + this.from)
console.log(res)
});