Documentation ¶
Index ¶
- type RedisCache
- func (r *RedisCache) Close()
- func (r *RedisCache) Flush() error
- func (r *RedisCache) Insert(key string, value []byte, ttl time.Duration) error
- func (r *RedisCache) Len() uint
- func (r *RedisCache) Pool() *pool.Pool
- func (r *RedisCache) Retrieve(key string) ([]byte, error)
- func (r *RedisCache) Size() uint64
- type RedisConfig
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type RedisCache ¶
type RedisCache struct {
// contains filtered or unexported fields
}
RedisCache stores our Redis Pool
func New ¶
func New(config RedisConfig) (*RedisCache, error)
Creates a new Redis cache instance, connecting to the given server and AUTHing with the provided password. If the password is an empty string, the AUTH command will not be run.
func (*RedisCache) Close ¶
func (r *RedisCache) Close()
func (*RedisCache) Flush ¶
func (r *RedisCache) Flush() error
func (*RedisCache) Len ¶
func (r *RedisCache) Len() uint
func (*RedisCache) Pool ¶
func (r *RedisCache) Pool() *pool.Pool
func (*RedisCache) Size ¶
func (r *RedisCache) Size() uint64
Click to show internal directories.
Click to hide internal directories.