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
|
// Package store contains deprecated aliases for subpackages
package store // import "github.com/throttled/throttled/store"
import (
"github.com/gomodule/redigo/redis"
"github.com/throttled/throttled/store/memstore"
"github.com/throttled/throttled/store/redigostore"
)
// DEPRECATED. NewMemStore is a compatible alias for mem.New
func NewMemStore(maxKeys int) *memstore.MemStore {
st, err := memstore.New(maxKeys)
if err != nil {
// As of this writing, `lru.New` can only return an error if you pass
// maxKeys <= 0 so this should never occur.
panic(err)
}
return st
}
// DEPRECATED. NewMemStore is a compatible alias for redis.New
func NewRedisStore(pool *redis.Pool, keyPrefix string, db int) *redigostore.RedigoStore {
st, err := redigostore.New(pool, keyPrefix, db)
if err != nil {
// As of this writing, creating a Redis store never returns an error
// so this should be safe while providing some ability to return errors
// in the future.
panic(err)
}
return st
}
|