发布于 2016-08-11 08:01:27 | 60 次阅读 | 评论: 0 | 来源: 网友投递

这里有新鲜出炉的精品教程,程序狗速度看过来!

Go-Redis Redis的Go客户端

Go-Redis 是 Redis 数据库的 Google Go 语言的客户端开发包。


Go-Redis v4.1.2 发布了,

支持:

API docs: http://godoc.org/gopkg.in/redis.v4. Examples: http://godoc.org/gopkg.in/redis.v4#pkg-examples.

示例如下:

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 }


历史版本 :
Go 语言 Redis 客户端 Go-Redis v4.1.2 发布
最新网友评论  共有(0)条评论 发布评论 返回顶部

Copyright © 2007-2017 PHPERZ.COM All Rights Reserved   冀ICP备14009818号  版权声明  广告服务