1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87
|
package cache
import (
"fmt"
"github.com/revel/revel"
"github.com/robfig/go-cache"
"reflect"
"time"
)
type InMemoryCache struct {
cache.Cache
}
func NewInMemoryCache(defaultExpiration time.Duration) InMemoryCache {
return InMemoryCache{*cache.New(defaultExpiration, time.Minute)}
}
func (c InMemoryCache) Get(key string, ptrValue interface{}) error {
value, found := c.Cache.Get(key)
if !found {
return ErrCacheMiss
}
v := reflect.ValueOf(ptrValue)
if v.Type().Kind() == reflect.Ptr && v.Elem().CanSet() {
v.Elem().Set(reflect.ValueOf(value))
return nil
}
err := fmt.Errorf("revel/cache: attempt to get %s, but can not set value %v", key, v)
revel.ERROR.Println(err)
return err
}
func (c InMemoryCache) GetMulti(keys ...string) (Getter, error) {
return c, nil
}
func (c InMemoryCache) Set(key string, value interface{}, expires time.Duration) error {
// NOTE: go-cache understands the values of DEFAULT and FOREVER
c.Cache.Set(key, value, expires)
return nil
}
func (c InMemoryCache) Add(key string, value interface{}, expires time.Duration) error {
err := c.Cache.Add(key, value, expires)
if err == cache.ErrKeyExists {
return ErrNotStored
}
return err
}
func (c InMemoryCache) Replace(key string, value interface{}, expires time.Duration) error {
if err := c.Cache.Replace(key, value, expires); err != nil {
return ErrNotStored
}
return nil
}
func (c InMemoryCache) Delete(key string) error {
if found := c.Cache.Delete(key); !found {
return ErrCacheMiss
}
return nil
}
func (c InMemoryCache) Increment(key string, n uint64) (newValue uint64, err error) {
newValue, err = c.Cache.Increment(key, n)
if err == cache.ErrCacheMiss {
return 0, ErrCacheMiss
}
return
}
func (c InMemoryCache) Decrement(key string, n uint64) (newValue uint64, err error) {
newValue, err = c.Cache.Decrement(key, n)
if err == cache.ErrCacheMiss {
return 0, ErrCacheMiss
}
return
}
func (c InMemoryCache) Flush() error {
c.Cache.Flush()
return nil
}
|