我尝试使用 mongodb 进行 node.js crud 操作,并将其存储在 redis 缓存中。第一次我尝试运行 get 方法从 db 获取数据,第二次我运行 get 方法。它从缓存中获取数据,但我试图删除表中的数据,然后再次运行 get 方法,它没有显示数据。它显示的是空数据。但是数据存储在redis缓存中。我该如何解决这个问题?
缓存.js
// var asyncRedis = require("async-redis")
// var myCache = asyncRedis.createClient()
var redis = require('redis');
const client = redis.createClient()
client.on('connect', function () {
console.log('Redis client connected');
});
client.on('error', function (err) {
console.log('Something went wrong ' + err);
});
var value;
var todayEnd = new Date().setHours(23, 59, 59, 999);
function Get_Value()
{
client.get('products', function(err,results) {
value = JSON.parse(results);
})
return value
}
function Set_Value(products)
{
client.set('products', JSON.stringify(products))
client.expireat('products', parseInt(todayEnd/1000));
}
exports.get_value = Get_Value;
exports.set_value = Set_Value;
路线.py
data = cache.get_value()
console.log(data)
if (data) {
console.log("GET")
res.send(data)
}
else {
console.log("SET")
const r = await db.collection('Ecommerce').find().toArray();
res.send(r)
data = cache.set_value(r)
}