Documentation ¶
Index ¶
- Constants
- type Application
- type Driver
- type DriverImpl
- type Lock
- type Memory
- func (r *Memory) Add(key string, value any, t time.Duration) bool
- func (r *Memory) Decrement(key string, value ...int) (int, error)
- func (r *Memory) Flush() bool
- func (r *Memory) Forever(key string, value any) bool
- func (r *Memory) Forget(key string) bool
- func (r *Memory) Get(key string, def ...any) any
- func (r *Memory) GetBool(key string, def ...bool) bool
- func (r *Memory) GetInt(key string, def ...int) int
- func (r *Memory) GetInt64(key string, def ...int64) int64
- func (r *Memory) GetString(key string, def ...string) string
- func (r *Memory) Has(key string) bool
- func (r *Memory) Increment(key string, value ...int) (int, error)
- func (r *Memory) Lock(key string, t ...time.Duration) contractscache.Lock
- func (r *Memory) Pull(key string, def ...any) any
- func (r *Memory) Put(key string, value any, t time.Duration) error
- func (r *Memory) Remember(key string, seconds time.Duration, callback func() any) (any, error)
- func (r *Memory) RememberForever(key string, callback func() any) (any, error)
- func (r *Memory) WithContext(ctx context.Context) contractscache.Driver
- type ServiceProvider
Constants ¶
View Source
const Binding = "goravel.cache"
View Source
const NoExpiration time.Duration = 0
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Application ¶
func NewApplication ¶
type DriverImpl ¶
type DriverImpl struct {
// contains filtered or unexported fields
}
func NewDriverImpl ¶
func NewDriverImpl(config config.Config) *DriverImpl
type Lock ¶
type Lock struct {
// contains filtered or unexported fields
}
func (*Lock) ForceRelease ¶
type Memory ¶
type Memory struct {
// contains filtered or unexported fields
}
func (*Memory) Remember ¶
Remember Get an item from the cache, or execute the given Closure and store the result.
func (*Memory) RememberForever ¶
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) contractscache.Driver
type ServiceProvider ¶
type ServiceProvider struct { }
func (*ServiceProvider) Boot ¶
func (database *ServiceProvider) Boot(app foundation.Application)
func (*ServiceProvider) Register ¶
func (database *ServiceProvider) Register(app foundation.Application)
Source Files ¶
Click to show internal directories.
Click to hide internal directories.