223 lines
		
	
	
		
			5.0 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			223 lines
		
	
	
		
			5.0 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| // Copyright 2014 beego Author. All Rights Reserved.
 | |
| //
 | |
| // Licensed under the Apache License, Version 2.0 (the "License");
 | |
| // you may not use this file except in compliance with the License.
 | |
| // You may obtain a copy of the License at
 | |
| //
 | |
| //      http://www.apache.org/licenses/LICENSE-2.0
 | |
| //
 | |
| // Unless required by applicable law or agreed to in writing, software
 | |
| // distributed under the License is distributed on an "AS IS" BASIS,
 | |
| // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 | |
| // See the License for the specific language governing permissions and
 | |
| // limitations under the License.
 | |
| 
 | |
| // Package redis for cache provider
 | |
| //
 | |
| // depend on github.com/gomodule/redigo/redis
 | |
| //
 | |
| // go install github.com/gomodule/redigo/redis
 | |
| //
 | |
| // Usage:
 | |
| // import(
 | |
| //   _ "github.com/astaxie/beego/cache/redis"
 | |
| //   "github.com/astaxie/beego/cache"
 | |
| // )
 | |
| //
 | |
| //  bm, err := cache.NewCache("redis", `{"conn":"127.0.0.1:11211"}`)
 | |
| //
 | |
| //  more docs http://beego.me/docs/module/cache.md
 | |
| package redis
 | |
| 
 | |
| import (
 | |
| 	"encoding/json"
 | |
| 	"errors"
 | |
| 	"fmt"
 | |
| 	"strconv"
 | |
| 	"time"
 | |
| 
 | |
| 	"github.com/gomodule/redigo/redis"
 | |
| 
 | |
| 	"github.com/astaxie/beego/cache"
 | |
| )
 | |
| 
 | |
| var (
 | |
| 	// DefaultKey the collection name of redis for cache adapter.
 | |
| 	DefaultKey = "beecacheRedis"
 | |
| )
 | |
| 
 | |
| // Cache is Redis cache adapter.
 | |
| type Cache struct {
 | |
| 	p        *redis.Pool // redis connection pool
 | |
| 	conninfo string
 | |
| 	dbNum    int
 | |
| 	key      string
 | |
| 	password string
 | |
| 	maxIdle  int
 | |
| }
 | |
| 
 | |
| // NewRedisCache create new redis cache with default collection name.
 | |
| func NewRedisCache() cache.Cache {
 | |
| 	return &Cache{key: DefaultKey}
 | |
| }
 | |
| 
 | |
| // actually do the redis cmds, args[0] must be the key name.
 | |
| func (rc *Cache) do(commandName string, args ...interface{}) (reply interface{}, err error) {
 | |
| 	if len(args) < 1 {
 | |
| 		return nil, errors.New("missing required arguments")
 | |
| 	}
 | |
| 	args[0] = rc.associate(args[0])
 | |
| 	c := rc.p.Get()
 | |
| 	defer c.Close()
 | |
| 
 | |
| 	return c.Do(commandName, args...)
 | |
| }
 | |
| 
 | |
| // associate with config key.
 | |
| func (rc *Cache) associate(originKey interface{}) string {
 | |
| 	return fmt.Sprintf("%s:%s", rc.key, originKey)
 | |
| }
 | |
| 
 | |
| // Get cache from redis.
 | |
| func (rc *Cache) Get(key string) interface{} {
 | |
| 	if v, err := rc.do("GET", key); err == nil {
 | |
| 		return v
 | |
| 	}
 | |
| 	return nil
 | |
| }
 | |
| 
 | |
| // GetMulti get cache from redis.
 | |
| func (rc *Cache) GetMulti(keys []string) []interface{} {
 | |
| 	c := rc.p.Get()
 | |
| 	defer c.Close()
 | |
| 	var args []interface{}
 | |
| 	for _, key := range keys {
 | |
| 		args = append(args, rc.associate(key))
 | |
| 	}
 | |
| 	values, err := redis.Values(c.Do("MGET", args...))
 | |
| 	if err != nil {
 | |
| 		return nil
 | |
| 	}
 | |
| 	return values
 | |
| }
 | |
| 
 | |
| // Put put cache to redis.
 | |
| func (rc *Cache) Put(key string, val interface{}, timeout time.Duration) error {
 | |
| 	_, err := rc.do("SETEX", key, int64(timeout/time.Second), val)
 | |
| 	return err
 | |
| }
 | |
| 
 | |
| // Delete delete cache in redis.
 | |
| func (rc *Cache) Delete(key string) error {
 | |
| 	_, err := rc.do("DEL", key)
 | |
| 	return err
 | |
| }
 | |
| 
 | |
| // IsExist check cache's existence in redis.
 | |
| func (rc *Cache) IsExist(key string) bool {
 | |
| 	v, err := redis.Bool(rc.do("EXISTS", key))
 | |
| 	if err != nil {
 | |
| 		return false
 | |
| 	}
 | |
| 	return v
 | |
| }
 | |
| 
 | |
| // Incr increase counter in redis.
 | |
| func (rc *Cache) Incr(key string) error {
 | |
| 	_, err := redis.Bool(rc.do("INCRBY", key, 1))
 | |
| 	return err
 | |
| }
 | |
| 
 | |
| // Decr decrease counter in redis.
 | |
| func (rc *Cache) Decr(key string) error {
 | |
| 	_, err := redis.Bool(rc.do("INCRBY", key, -1))
 | |
| 	return err
 | |
| }
 | |
| 
 | |
| // ClearAll clean all cache in redis. delete this redis collection.
 | |
| func (rc *Cache) ClearAll() error {
 | |
| 	c := rc.p.Get()
 | |
| 	defer c.Close()
 | |
| 	cachedKeys, err := redis.Strings(c.Do("KEYS", rc.key+":*"))
 | |
| 	if err != nil {
 | |
| 		return err
 | |
| 	}
 | |
| 	for _, str := range cachedKeys {
 | |
| 		if _, err = c.Do("DEL", str); err != nil {
 | |
| 			return err
 | |
| 		}
 | |
| 	}
 | |
| 	return err
 | |
| }
 | |
| 
 | |
| // StartAndGC start redis cache adapter.
 | |
| // config is like {"key":"collection key","conn":"connection info","dbNum":"0"}
 | |
| // the cache item in redis are stored forever,
 | |
| // so no gc operation.
 | |
| func (rc *Cache) StartAndGC(config string) error {
 | |
| 	var cf map[string]string
 | |
| 	json.Unmarshal([]byte(config), &cf)
 | |
| 
 | |
| 	if _, ok := cf["key"]; !ok {
 | |
| 		cf["key"] = DefaultKey
 | |
| 	}
 | |
| 	if _, ok := cf["conn"]; !ok {
 | |
| 		return errors.New("config has no conn key")
 | |
| 	}
 | |
| 	if _, ok := cf["dbNum"]; !ok {
 | |
| 		cf["dbNum"] = "0"
 | |
| 	}
 | |
| 	if _, ok := cf["password"]; !ok {
 | |
| 		cf["password"] = ""
 | |
| 	}
 | |
| 	if _, ok := cf["maxIdle"]; !ok {
 | |
| 		cf["maxIdle"] = "3"
 | |
| 	}
 | |
| 	rc.key = cf["key"]
 | |
| 	rc.conninfo = cf["conn"]
 | |
| 	rc.dbNum, _ = strconv.Atoi(cf["dbNum"])
 | |
| 	rc.password = cf["password"]
 | |
| 	rc.maxIdle, _ = strconv.Atoi(cf["maxIdle"])
 | |
| 
 | |
| 	rc.connectInit()
 | |
| 
 | |
| 	c := rc.p.Get()
 | |
| 	defer c.Close()
 | |
| 
 | |
| 	return c.Err()
 | |
| }
 | |
| 
 | |
| // connect to redis.
 | |
| func (rc *Cache) connectInit() {
 | |
| 	dialFunc := func() (c redis.Conn, err error) {
 | |
| 		c, err = redis.Dial("tcp", rc.conninfo)
 | |
| 		if err != nil {
 | |
| 			return nil, err
 | |
| 		}
 | |
| 
 | |
| 		if rc.password != "" {
 | |
| 			if _, err := c.Do("AUTH", rc.password); err != nil {
 | |
| 				c.Close()
 | |
| 				return nil, err
 | |
| 			}
 | |
| 		}
 | |
| 
 | |
| 		_, selecterr := c.Do("SELECT", rc.dbNum)
 | |
| 		if selecterr != nil {
 | |
| 			c.Close()
 | |
| 			return nil, selecterr
 | |
| 		}
 | |
| 		return
 | |
| 	}
 | |
| 	// initialize a new pool
 | |
| 	rc.p = &redis.Pool{
 | |
| 		MaxIdle:     rc.maxIdle,
 | |
| 		IdleTimeout: 180 * time.Second,
 | |
| 		Dial:        dialFunc,
 | |
| 	}
 | |
| }
 | |
| 
 | |
| func init() {
 | |
| 	cache.Register("redis", NewRedisCache)
 | |
| }
 |