后端程序员之路 55go redis

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了后端程序员之路 55go redis相关的知识,希望对你有一定的参考价值。

redigo有点像hiredis,只提供了最基本的连接和执行命令接口。

找到个不错的redis库:

https://github.com/go-redis/redis

 

func ExampleNewClient() {
    client := redis.NewClient(&redis.Options{
        Addr:     "localhost:6379",
        Password: "", // no password set
        DB:       0,  // use default DB
    })

    pong, err := client.Ping().Result()
    fmt.Println(pong, err)
    // Output: PONG <nil>
}

func ExampleClient() {
    err := client.Set("key", "value", 0).Err()
    if err != nil {
        panic(err)
    }

    val, err := client.Get("key").Result()
    if err != nil {
        panic(err)
    }
    fmt.Println("key", val)

    val2, err := client.Get("key2").Result()
    if err == redis.Nil {
        fmt.Println("key2 does not exists")
    } else if err != nil {
        panic(err)
    } else {
        fmt.Println("key2", val2)
    }
    // Output: key value
    // key2 does not exists
}

  

以上是关于后端程序员之路 55go redis的主要内容,如果未能解决你的问题,请参考以下文章

后端程序员之路 57go json

后端程序员之路 52A Tour of Go-2

后端程序员之路 8一种内存kv数据库的实现

Go语言学习之路

Go语言学习之路

Go语言学习之路