Documentation
¶
Index ¶
- type Cache
- type Cacheable
- type KVCache
- func (c *KVCache) Drop(ctx context.Context, ids ...string) error
- func (c *KVCache) Flush(ctx context.Context) error
- func (c *KVCache) Get(ctx context.Context, id string, out interface{}) bool
- func (c *KVCache) Reset()
- func (c *KVCache) Set(ctx context.Context, element Cacheable) error
- func (c *KVCache) SetRaw(ctx context.Context, id string, element interface{}) error
- func (c *KVCache) Store() map[string]interface{}
- type ThreadSafeCache
- func (tsc *ThreadSafeCache) Drop(ctx context.Context, ids ...string) error
- func (tsc *ThreadSafeCache) Flush(ctx context.Context) error
- func (tsc *ThreadSafeCache) Get(ctx context.Context, id string, out interface{}) bool
- func (tsc *ThreadSafeCache) Set(ctx context.Context, element Cacheable) error
- func (tsc *ThreadSafeCache) SetRaw(ctx context.Context, id string, element interface{}) error
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Cache ¶
type Cache interface { // GetLocal returns the object in local cache, if it exists. // Returns true if found, false if not found Get(ctx context.Context, id string, out interface{}) bool // Set both remote and local caches Set(ctx context.Context, element Cacheable) error // SetRaw lets you choose the id instead of relying on the Cacheable interface SetRaw(ctx context.Context, id string, element interface{}) error // Drop both remote and local cache entry Drop(ctx context.Context, ids ...string) error // Flush removes all entries in remote and local cache Flush(ctx context.Context) error }
Cache unifies cache usage across the project.
func NewKV ¶
func NewKV() Cache
NewKV is a local Key: Value storage using a stock golang map[string]interface{}. Very useful for tests but could be used for any local cache.
func NewThreadSafeCache ¶
NewThreadSafeCache creates the wrapped cache
type Cacheable ¶
type Cacheable interface {
CacheID() string
}
Cacheable makes your struct cache-able
type KVCache ¶
type KVCache struct {
// contains filtered or unexported fields
}
KVCache is a simple map[string]interface{} so you get a very simple local key:value storage.
func (*KVCache) Reset ¶
func (c *KVCache) Reset()
Reset allocates a new cache map. Useful for tests.
type ThreadSafeCache ¶
type ThreadSafeCache struct {
// contains filtered or unexported fields
}
ThreadSafeCache wrap Cache with locks
func (*ThreadSafeCache) Drop ¶
func (tsc *ThreadSafeCache) Drop(ctx context.Context, ids ...string) error
Drop ...
func (*ThreadSafeCache) Flush ¶
func (tsc *ThreadSafeCache) Flush(ctx context.Context) error
Flush ...
func (*ThreadSafeCache) Get ¶
func (tsc *ThreadSafeCache) Get(ctx context.Context, id string, out interface{}) bool
Get ...
Click to show internal directories.
Click to hide internal directories.