redis

package
v1.1.15 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jan 19, 2024 License: MIT Imports: 5 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func New

func New(config ...Config) (cache.Store, error)

Types

type Config

type Config struct {
	Prefix   string
	Host     string
	Port     string
	DB       int
	Password string
	Context  context.Context
}

type Redis

type Redis struct {
	Prefix string
	Redis  *redis.Client
	// contains filtered or unexported fields
}

func (*Redis) Add

func (r *Redis) Add(key string, value interface{}, seconds time.Duration) bool

Add Store an item in the cache if the key does not exist.

func (*Redis) Connection added in v1.1.15

func (r *Redis) Connection(name string) cache.Store

func (*Redis) Flush

func (r *Redis) Flush() bool

Flush Remove all items from the cache.

func (*Redis) Forever

func (r *Redis) Forever(key string, value interface{}) bool

Forever Store an item in the cache indefinitely.

func (*Redis) Forget

func (r *Redis) Forget(key string) bool

Forget Remove an item from the cache.

func (*Redis) Get

func (r *Redis) Get(key string, def interface{}) interface{}

Get Retrieve an item from the cache by key.

func (*Redis) GetBool

func (r *Redis) GetBool(key string, def bool) bool

func (*Redis) GetInt

func (r *Redis) GetInt(key string, def int) int

func (*Redis) GetString

func (r *Redis) GetString(key string, def string) string

func (*Redis) Has

func (r *Redis) Has(key string) bool

Has Check an item exists in the cache.

func (*Redis) Pull

func (r *Redis) Pull(key string, def interface{}) interface{}

Pull Retrieve an item from the cache and delete it.

func (*Redis) Put

func (r *Redis) Put(key string, value interface{}, seconds time.Duration) error

Put Store an item in the cache for a given number of seconds.

func (*Redis) Remember

func (r *Redis) Remember(key string, ttl time.Duration, callback func() interface{}) (interface{}, error)

Remember Get an item from the cache, or execute the given Closure and store the result.

func (*Redis) RememberForever

func (r *Redis) RememberForever(key string, callback func() interface{}) (interface{}, error)

RememberForever Get an item from the cache, or execute the given Closure and store the result forever.

func (*Redis) WithContext

func (r *Redis) WithContext(ctx context.Context) cache.Store

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL