go redis

Posted shhnwangjian

tags:

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

go redis

1、安装导入

使用第三方开源的redis库: github.com/garyburd/redigo/redis

 

go get github.com/garyburd/redigo/redis
import "github.com/garyburd/redigo/redis"

 

github:https://github.com/antirez/redis

Doc:http://godoc.org/github.com/garyburd/redigo/redis

 

使用

2、连接

package main

import (
	"fmt"

	"github.com/garyburd/redigo/redis"
)

func main() {
	c, err := redis.Dial("tcp", "localhost:6379")
	if err != nil {
		fmt.Println("conn redis failed,", err)
		return
	}

	defer c.Close()
}

 

以上是关于go redis的主要内容,如果未能解决你的问题,请参考以下文章

你知道的Go切片扩容机制可能是错的

golang代码片段(摘抄)

go语言使用redis(redigo)

npm : 无法加载文件 D:softcodeProcess ode ode_global pm.ps1,因为在此系统上禁止运行脚本。有关详细信息,请参阅 https:/go.micr +(代码片段

Go Redis 客户端源码阅读连接池初始化

当我使用`go install`时,它返回的不是主包