使用 Redis 架构 URL 连接到 Redis 服务器

aks*_*aks 3 go redis

我正在尝试连接到托管在这样的 url 上的 Redis 服务器。

redis://h:asdfqwer1234asdf@ec2-111-1-1-1.compute-1.amazonaws.com:38799

我尝试过使用 2 个库,但它们都无法连接到服务器。我使用过redix.v3go-redis

redix.v3当使用上面类似的 URL 时,我遇到了恐慌错误。

我收到go-redis一个关于网址中冒号太多的错误,我尝试使用 [redis://h:asdfqwer1234asdf@ec2-111-1-1-1.compute-1.amazonaws.com]:38799某些帖子中建议的这个网址。

还是没有运气。有人成功连接到Redis服务器吗?

redix.v3 的代码和错误

func main() {
    fmt.Println("running")
    client, err := radix.NewPool("tcp", "redis://h:asdfqwer1234asdf@ec2-111-1-1-1.compute-1.amazonaws.com:38799", 10)
    if err != nil {
        // handle error
    }

    var fooVal string
    err = client.Do(radix.Cmd(&fooVal, "SET", "foo", "hello"))
    fmt.Println(err, fooVal)
}
Run Code Online (Sandbox Code Playgroud)

错误:

panic: runtime error: invalid memory address or nil pointer dereference
[signal SIGSEGV: segmentation violation code=0x1 addr=0x0 pc=0x4f2b7e]

goroutine 1 [running]:
github.com/mediocregopher/radix%2ev3.(*Pool).getExisting(0x0, 0x0, 0x0, 0x0)
    /home/aks/go/src/github.com/mediocregopher/radix.v3/pool.go:365 +0x4e
github.com/mediocregopher/radix%2ev3.(*Pool).get(0x0, 0x40aa78, 0x51afe0, 0x525120)
    /home/aks/go/src/github.com/mediocregopher/radix.v3/pool.go:403 +0x2f
github.com/mediocregopher/radix%2ev3.(*Pool).Do(0x0, 0x7f6478467fd0, 0xc0000e2070, 0x0, 0x0)
    /home/aks/go/src/github.com/mediocregopher/radix.v3/pool.go:440 +0x37
main.main()
    /home/aks/hello.go:17 +0x19e
exit status 2
Run Code Online (Sandbox Code Playgroud)

go-redis 的代码和错误

client := redis.NewClient(&redis.Options{
        Addr:     "redis://h:asdfqwer1234asdf@ec2-111-1-1-1.compute-1.amazonaws.com:38799",
        Password: "", // no password set
        DB:       0,  // use default DB
    })

// setup eviction policy on the redis client
client.ConfigSet("maxmemory", Config.RedisMaxMemory)
client.ConfigSet("maxmemory-policy", "allkeys-lru")

_, err := client.Ping().Result()

if err != nil {
    log.Println("Redis: failed to connect", err)
} else {
    log.Println("Redis: connected")
}
Run Code Online (Sandbox Code Playgroud)

错误:

2018/10/08 10:57:29 Redis: failed to connect dial tcp: address redis://h:asdfqwer1234asdf@ec2-111-1-1-1.compute-1.amazonaws.com:38799: too many colons in address
Run Code Online (Sandbox Code Playgroud)

sse*_*lla 7

可以使用go-redis中的ParseURL函数

opt, _ := redis.ParseURL("redis://:qwerty@localhost:6379")
client := redis.NewClient(opt)
Run Code Online (Sandbox Code Playgroud)