码迷,mamicode.com
首页 > 其他好文 > 详细

go里面redis缓存池

时间:2021-01-01 12:17:32      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:dia   har   fun   out   timeout   imp   get   style   tcp   

1.代码实现

package  main

import (
	"fmt"
	"github.com/gomodule/redigo/redis"
)

var pool *redis.Pool;
func init(){
	pool = &redis.Pool{
		MaxIdle: 8,
		MaxActive:0,
		IdleTimeout: 100,
		Dial: func() (redis.Conn, error) {
			return redis.Dial("tcp","localhost:6379")
		},
	}
}
func main(){
	conn := pool.Get();
	conn.Do("set","name","lisoi");
	s, err := redis.String(conn.Do("get","name"));
	if err !=nil {
		fmt.Println("is error");
	}
	fmt.Println(s);
}

  

go里面redis缓存池

标签:dia   har   fun   out   timeout   imp   get   style   tcp   

原文地址:https://www.cnblogs.com/zh718594493/p/14199667.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!