我一直在为我的nodejs应用程序设置缓存服务器。 以下是我正在从事的项目。简单一个。
我有一个外部API,可为GET请求提供JSON响应。 我想将这些键和JSON(值)存储在Redis缓存服务器中。而且我能够做到。
现在,当调用GET请求时,它到达我的节点URL->外部API <-JSON作为响应(存储在缓存中)。
对于下一个请求,如果有相同的GET出现,它将进入缓存以获取键/值对。
但是在这里,如果我的缓存服务器不可访问或不可用,我必须再次使用API来获取值。
我尝试了如下所示的代码,并且在关闭Cache服务器时失败了。如何执行if循环以获取Redis缓存服务器的连接状态?
下面是我的controller.js
function getRedisCacheConnection(){
const REDIS_PORT = process.env.PORT || 6379;
const client = redis.createClient(REDIS_PORT);
client.on('connect', function() {
console.log('Redis client connected');
console.log(`${client.connected}`);
});
client.on('error', function (err) {
console.log('Something went wrong ' + err);
})
return client;
}
exports.getCityCode = (req,res)=>{
var originCity = req.query.origincity;
var originState = req.query.originstate;
function setReponse(originCity, response){
return response;
}
const options = {
method: 'GET',
uri: `http://webapi.external.com/api/v3/locations?name=${originCity}`,
headers: {
'Content-Type': 'application/json'
}
}
request(options).then(function (response){
res.status(200).send(setReponse(originCity, response));
const client1 = getRedisCacheConnection();
console.dir("setting key to Cache " + originCity);
client1.setex(originCity, 3600, response);
});
}
exports.Cache = (req,res,next) => {
const originCity = req.query.origincity;
function setReponse(originCity, response){
return response;
}
const client1 = getRedisCacheConnection();
client1.get(originCity, (err,data) =>{
if(err) throw err;
if(data !== null){
console.dir(originCity + " Getting Key from Cache");
res.status(200).send(setReponse(originCity,data));
}
else{
next();
}
});
}
这是我的router.js
app.get('/citycode/', city.Cache, city.getCityCode);
答案 0 :(得分:0)
您抛出一个错误:
if(err) throw err;
记录错误,不要创建异常。