gpt4 book ai didi

node.js - Redis 在 nodejs 中返回 true

转载 作者:可可西里 更新时间:2023-11-01 11:24:17 25 4
gpt4 key购买 nike

我正在用 typescript 编写一个 RESTful API,我正在尝试使用存储在 redis 中的已解析数据和另一个函数中的特定键。我遇到的问题是,我没有从 redis 接收实际数据,而是一直接收 bool 值 true。我尝试了很多谷歌搜索并阅读了 redis 文档,不幸的是无济于事。现在有人在这里我如何访问实际数据以便我可以在另一个函数中使用它?我怀疑我在这里面临某种异步问题,但我不完全确定。

例如,如果我尝试将响应绑定(bind)到一个变量,这将会发生:

const key = something
const reply = client.mget(key);
console.log("This is the reply: " + reply);

This is the reply: true

Br,维克多

编辑:

所以基本上我将数据从 https.get 发送到一个对象处理程序,该处理程序将数据解析为我喜欢的形式,然后我将该对象字符串化并将其作为字符串发送到 redis,如下所示:

client.set(redisInfo, JSON.stringify(objecthandler(newdata)));

我目前获取数据的实际代码如下所示:

const getRedis = (rediskey: string, success: any, error: any) => {
client.mget(rediskey, function (err: Error, reply: any) {
if (!err) {
success(reply);
}
else {
error(err);
}
});
};

//My callback function that I'm trying to get to work so I can use the redis data in other functions
function getrediscallback(key: string) {
getRedis(key, function success(reply: string): string {
//This console.log actually returns the data that I want
console.log("this is the reply: " + reply);
return reply;
},
function error(err: Error) {
console.log("Something went wrong" + err);
});
}

所以当我在另一个函数中使用回调时,它看起来像这样:

const redisdata = getrediscallback("getCars");
//This gives me the value of undefined
console.log(redisdata)

这意味着回调函数实际上得到了实际数据,但是当我在另一个函数中使用回调函数时,它永远不会到达。

最佳答案

const redis = require('redis');

const client = redis.createClient(6379);

const bluebird = require("bluebird");

bluebird.promisifyAll(redis.RedisClient.prototype);

bluebird.promisifyAll(redis.Multi.prototype);

const redisdata = await client.getAsync('user:photos');

if (redisdata) {
console.log(`cache EXISTS`)
return res.json({ source: 'cache', data: JSON.parse(redisdata) })
}

关于node.js - Redis 在 nodejs 中返回 true,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52380154/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com