cache

package
v0.5.0 Latest Latest
Warning

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

Go to latest
Published: May 23, 2022 License: MIT Imports: 8 Imported by: 4

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Application

type Application struct {
}

func (*Application) Init

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

type Redis

type Redis struct {
	Prefix string
	Redis  *redis.Client
}

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) 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, defaults interface{}) interface{}

Get Retrieve an item from the cache by key.

func (*Redis) Has

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

Has Determine if an item exists in the cache.

func (*Redis) Pull

func (r *Redis) Pull(key string, defaults 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.

type ServiceProvider

type ServiceProvider struct {
}

func (*ServiceProvider) Boot

func (database *ServiceProvider) Boot()

Boot Bootstrap any application services after register.

func (*ServiceProvider) Register

func (database *ServiceProvider) Register()

Register any application services.

Directories

Path Synopsis

Jump to

Keyboard shortcuts

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