我尝试使用 mongodb 在节点 js 中实现 redis 缓存。我在缓存中设置了数据。但是我无法在缓存中获取数据。如何解决这个问题。
缓存.js
async function Get_Value(){
let response = await client.get('products')
console.log("_______________")
console.log(response)
}
我得到了输出:真
异常输出:json数据
如何使用缓存get方法获取json数据