Documentation ¶
Index ¶
- Constants
- type Cache
- func (c *Cache) Clear() error
- func (c *Cache) Delete(key interface{}) error
- func (c *Cache) Get(key interface{}) (interface{}, error)
- func (c *Cache) GetCodec() codec.CodecInterface
- func (c *Cache) GetType() string
- func (c *Cache) Invalidate(options store.InvalidateOptions) error
- func (c *Cache) Set(key, object interface{}, options *store.Options) error
- type CacheInterface
- type ChainCache
- func (c *ChainCache) Clear() error
- func (c *ChainCache) Delete(key interface{}) error
- func (c *ChainCache) Get(key interface{}) (interface{}, error)
- func (c *ChainCache) GetCaches() []SetterCacheInterface
- func (c *ChainCache) GetType() string
- func (c *ChainCache) Invalidate(options store.InvalidateOptions) error
- func (c *ChainCache) Set(key, object interface{}, options *store.Options) error
- type LoadableCache
- func (c *LoadableCache) Clear() error
- func (c *LoadableCache) Delete(key interface{}) error
- func (c *LoadableCache) Get(key interface{}) (interface{}, error)
- func (c *LoadableCache) GetType() string
- func (c *LoadableCache) Invalidate(options store.InvalidateOptions) error
- func (c *LoadableCache) Set(key, object interface{}, options *store.Options) error
- type MetricCache
- func (c *MetricCache) Clear() error
- func (c *MetricCache) Delete(key interface{}) error
- func (c *MetricCache) Get(key interface{}) (interface{}, error)
- func (c *MetricCache) GetType() string
- func (c *MetricCache) Invalidate(options store.InvalidateOptions) error
- func (c *MetricCache) Set(key, object interface{}, options *store.Options) error
- type SetterCacheInterface
Constants ¶
const (
// CacheType represents the cache type as a string value
CacheType = "cache"
)
const (
// ChainType represents the chain cache type as a string value
ChainType = "chain"
)
const (
// LoadableType represents the loadable cache type as a string value
LoadableType = "loadable"
)
const (
// MetricType represents the metric cache type as a string value
MetricType = "metric"
)
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Cache ¶
type Cache struct {
// contains filtered or unexported fields
}
Cache represents the configuration needed by a cache
func (*Cache) GetCodec ¶
func (c *Cache) GetCodec() codec.CodecInterface
GetCodec returns the current codec
func (*Cache) Invalidate ¶
func (c *Cache) Invalidate(options store.InvalidateOptions) error
Invalidate invalidates cache item from given options
type CacheInterface ¶
type CacheInterface interface { Get(key interface{}) (interface{}, error) Set(key, object interface{}, options *store.Options) error Delete(key interface{}) error Invalidate(options store.InvalidateOptions) error Clear() error GetType() string }
CacheInterface represents the interface for all caches (aggregates, metric, memory, redis, ...)
type ChainCache ¶
type ChainCache struct {
// contains filtered or unexported fields
}
ChainCache represents the configuration needed by a cache aggregator
func NewChain ¶
func NewChain(caches ...SetterCacheInterface) *ChainCache
NewChain instanciates a new cache aggregator
func (*ChainCache) Delete ¶
func (c *ChainCache) Delete(key interface{}) error
Delete removes a value from all available caches
func (*ChainCache) Get ¶
func (c *ChainCache) Get(key interface{}) (interface{}, error)
Get returns the object stored in cache if it exists
func (*ChainCache) GetCaches ¶
func (c *ChainCache) GetCaches() []SetterCacheInterface
GetCaches returns all Chaind caches
func (*ChainCache) Invalidate ¶
func (c *ChainCache) Invalidate(options store.InvalidateOptions) error
Invalidate invalidates cache item from given options
type LoadableCache ¶
type LoadableCache struct {
// contains filtered or unexported fields
}
LoadableCache represents a cache that uses a function to load data
func NewLoadable ¶
func NewLoadable(loadFunc loadFunction, cache CacheInterface) *LoadableCache
NewLoadable instanciates a new cache that uses a function to load data
func (*LoadableCache) Delete ¶
func (c *LoadableCache) Delete(key interface{}) error
Delete removes a value from cache
func (*LoadableCache) Get ¶
func (c *LoadableCache) Get(key interface{}) (interface{}, error)
Get returns the object stored in cache if it exists
func (*LoadableCache) GetType ¶
func (c *LoadableCache) GetType() string
GetType returns the cache type
func (*LoadableCache) Invalidate ¶
func (c *LoadableCache) Invalidate(options store.InvalidateOptions) error
Invalidate invalidates cache item from given options
type MetricCache ¶
type MetricCache struct {
// contains filtered or unexported fields
}
MetricCache is the struct that specifies metrics available for different caches
func NewMetric ¶
func NewMetric(metrics metrics.MetricsInterface, cache CacheInterface) *MetricCache
NewMetric creates a new cache with metrics and a given cache storage
func (*MetricCache) Delete ¶
func (c *MetricCache) Delete(key interface{}) error
Delete removes a value from the cache
func (*MetricCache) Get ¶
func (c *MetricCache) Get(key interface{}) (interface{}, error)
Get obtains a value from cache and also records metrics
func (*MetricCache) Invalidate ¶
func (c *MetricCache) Invalidate(options store.InvalidateOptions) error
Invalidate invalidates cache item from given options
type SetterCacheInterface ¶
type SetterCacheInterface interface { CacheInterface GetCodec() codec.CodecInterface }
SetterCacheInterface represents the interface for caches that allows storage (for instance: memory, redis, ...)