mirror of
https://github.com/astaxie/beego.git
synced 2024-11-01 07:30:54 +00:00
241 lines
4.6 KiB
Go
241 lines
4.6 KiB
Go
package ssdb
|
|
|
|
import (
|
|
"encoding/json"
|
|
"errors"
|
|
"strconv"
|
|
"strings"
|
|
"time"
|
|
|
|
"github.com/ssdb/gossdb/ssdb"
|
|
|
|
"github.com/astaxie/beego/cache"
|
|
)
|
|
|
|
// Cache SSDB adapter
|
|
type Cache struct {
|
|
conn *ssdb.Client
|
|
conninfo []string
|
|
}
|
|
|
|
//NewSsdbCache create new ssdb adapter.
|
|
func NewSsdbCache() cache.Cache {
|
|
return &Cache{}
|
|
}
|
|
|
|
// Get get value from memcache.
|
|
func (rc *Cache) Get(key string) interface{} {
|
|
if rc.conn == nil {
|
|
if err := rc.connectInit(); err != nil {
|
|
return nil
|
|
}
|
|
}
|
|
value, err := rc.conn.Get(key)
|
|
if err == nil {
|
|
return value
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// GetMulti get value from memcache.
|
|
func (rc *Cache) GetMulti(keys []string) []interface{} {
|
|
size := len(keys)
|
|
var values []interface{}
|
|
if rc.conn == nil {
|
|
if err := rc.connectInit(); err != nil {
|
|
for i := 0; i < size; i++ {
|
|
values = append(values, err)
|
|
}
|
|
return values
|
|
}
|
|
}
|
|
res, err := rc.conn.Do("multi_get", keys)
|
|
resSize := len(res)
|
|
if err == nil {
|
|
for i := 1; i < resSize; i += 2 {
|
|
values = append(values, string(res[i+1]))
|
|
}
|
|
return values
|
|
}
|
|
for i := 0; i < size; i++ {
|
|
values = append(values, err)
|
|
}
|
|
return values
|
|
}
|
|
|
|
// DelMulti get value from memcache.
|
|
func (rc *Cache) DelMulti(keys []string) error {
|
|
if rc.conn == nil {
|
|
if err := rc.connectInit(); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
_, err := rc.conn.Do("multi_del", keys)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// Put put value to memcache. only support string.
|
|
func (rc *Cache) Put(key string, value interface{}, timeout time.Duration) error {
|
|
if rc.conn == nil {
|
|
if err := rc.connectInit(); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
v, ok := value.(string)
|
|
if !ok {
|
|
return errors.New("value must string")
|
|
}
|
|
var resp []string
|
|
var err error
|
|
ttl := int(timeout / time.Second)
|
|
if ttl < 0 {
|
|
resp, err = rc.conn.Do("set", key, v)
|
|
} else {
|
|
resp, err = rc.conn.Do("setx", key, v, ttl)
|
|
}
|
|
if err != nil {
|
|
return err
|
|
}
|
|
if len(resp) == 2 && resp[0] == "ok" {
|
|
return nil
|
|
}
|
|
return errors.New("bad response")
|
|
}
|
|
|
|
// Delete delete value in memcache.
|
|
func (rc *Cache) Delete(key string) error {
|
|
if rc.conn == nil {
|
|
if err := rc.connectInit(); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
_, err := rc.conn.Del(key)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// Incr increase counter.
|
|
func (rc *Cache) Incr(key string) error {
|
|
if rc.conn == nil {
|
|
if err := rc.connectInit(); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
_, err := rc.conn.Do("incr", key, 1)
|
|
return err
|
|
}
|
|
|
|
// Decr decrease counter.
|
|
func (rc *Cache) Decr(key string) error {
|
|
if rc.conn == nil {
|
|
if err := rc.connectInit(); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
_, err := rc.conn.Do("incr", key, -1)
|
|
return err
|
|
}
|
|
|
|
// IsExist check value exists in memcache.
|
|
func (rc *Cache) IsExist(key string) bool {
|
|
if rc.conn == nil {
|
|
if err := rc.connectInit(); err != nil {
|
|
return false
|
|
}
|
|
}
|
|
resp, err := rc.conn.Do("exists", key)
|
|
if err != nil {
|
|
return false
|
|
}
|
|
if resp[1] == "1" {
|
|
return true
|
|
}
|
|
return false
|
|
|
|
}
|
|
|
|
// ClearAll clear all cached in memcache.
|
|
func (rc *Cache) ClearAll() error {
|
|
if rc.conn == nil {
|
|
if err := rc.connectInit(); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
keyStart, keyEnd, limit := "", "", 50
|
|
resp, err := rc.Scan(keyStart, keyEnd, limit)
|
|
for err == nil {
|
|
size := len(resp)
|
|
if size == 1 {
|
|
return nil
|
|
}
|
|
keys := []string{}
|
|
for i := 1; i < size; i += 2 {
|
|
keys = append(keys, string(resp[i]))
|
|
}
|
|
_, e := rc.conn.Do("multi_del", keys)
|
|
if e != nil {
|
|
return e
|
|
}
|
|
keyStart = resp[size-2]
|
|
resp, err = rc.Scan(keyStart, keyEnd, limit)
|
|
}
|
|
return err
|
|
}
|
|
|
|
// Scan key all cached in ssdb.
|
|
func (rc *Cache) Scan(keyStart string, keyEnd string, limit int) ([]string, error) {
|
|
if rc.conn == nil {
|
|
if err := rc.connectInit(); err != nil {
|
|
return nil, err
|
|
}
|
|
}
|
|
resp, err := rc.conn.Do("scan", keyStart, keyEnd, limit)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return resp, nil
|
|
}
|
|
|
|
// StartAndGC start memcache adapter.
|
|
// config string is like {"conn":"connection info"}.
|
|
// if connecting error, return.
|
|
func (rc *Cache) StartAndGC(config string) error {
|
|
var cf map[string]string
|
|
json.Unmarshal([]byte(config), &cf)
|
|
if _, ok := cf["conn"]; !ok {
|
|
return errors.New("config has no conn key")
|
|
}
|
|
rc.conninfo = strings.Split(cf["conn"], ";")
|
|
if rc.conn == nil {
|
|
if err := rc.connectInit(); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// connect to memcache and keep the connection.
|
|
func (rc *Cache) connectInit() error {
|
|
conninfoArray := strings.Split(rc.conninfo[0], ":")
|
|
host := conninfoArray[0]
|
|
port, e := strconv.Atoi(conninfoArray[1])
|
|
if e != nil {
|
|
return e
|
|
}
|
|
var err error
|
|
rc.conn, err = ssdb.Connect(host, port)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func init() {
|
|
cache.Register("ssdb", NewSsdbCache)
|
|
}
|