cache

package
v0.0.0-...-057734e Latest Latest
Warning

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

Go to latest
Published: Feb 16, 2023 License: MIT Imports: 12 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func NewApplication

func NewApplication() cache.Store

func (app *Application) Init() cache.Store {

Types

type Application

type Application struct {
}

type Memory

type Memory struct {
	// contains filtered or unexported fields
}

func NewMemory

func NewMemory() (*Memory, error)

func (*Memory) Add

func (r *Memory) Add(key string, value any, seconds time.Duration) bool

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

func (*Memory) Flush

func (r *Memory) Flush() bool

Flush Remove all items from the cache.

func (*Memory) Forever

func (r *Memory) Forever(key string, value any) bool

Forever Store an item in the cache indefinitely.

func (*Memory) Forget

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

Forget Remove an item from the cache.

func (*Memory) Get

func (r *Memory) Get(key string, def any) any

Get Retrieve an item from the cache by key.

func (*Memory) GetBool

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

func (*Memory) GetInt

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

func (*Memory) GetString

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

func (*Memory) Has

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

Has Check an item exists in the cache.

func (*Memory) Pull

func (r *Memory) Pull(key string, def any) any

Pull Retrieve an item from the cache and delete it.

func (*Memory) Put

func (r *Memory) Put(key string, value any, seconds time.Duration) error

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

func (*Memory) Remember

func (r *Memory) Remember(key string, seconds time.Duration, callback func() any) (any, error)

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

func (*Memory) RememberForever

func (r *Memory) RememberForever(key string, callback func() any) (any, error)

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

func (*Memory) WithContext

func (r *Memory) WithContext(ctx context.Context) cachecontract.Store

type Redis

type Redis struct {
	// contains filtered or unexported fields
}

func NewRedis

func NewRedis(ctx context.Context) (*Redis, error)

func (*Redis) Add

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

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

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 any) 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 any) any

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 any) any

Pull Retrieve an item from the cache and delete it.

func (*Redis) Put

func (r *Redis) Put(key string, value any, 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, seconds time.Duration, callback func() any) (any, 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() any) (any, 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

type ServiceProvider

type ServiceProvider struct {
}

func (*ServiceProvider) Boot

func (database *ServiceProvider) Boot()

func (*ServiceProvider) Register

func (database *ServiceProvider) Register()

Directories

Path Synopsis

Jump to

Keyboard shortcuts

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