gpt4 book ai didi

go - Redis 与 go lang 的连接

转载 作者:IT王子 更新时间:2023-10-29 02:29:25 26 4
gpt4 key购买 nike

我得到了

dial : unknown network error

当我尝试像这样在 go lang 中连接 redis 时:

var client *redis.Client

client = redis.NewClient(&redis.Options{
Addr : "localhost:6379",
Password:"",
DB : 0,
});

为什么我会收到这个错误,请帮忙。

最佳答案

您没有为拨号器提供网络参数:

client := redis.NewClient(&redis.Options{
Network: "tcp",
Addr: "localhost:6379",
Password: "",
DB: 0,
})

或者使用NewTCPClient ,为您设置“tcp”网络参数。

关于go - Redis 与 go lang 的连接,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41451787/

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