Documentation ¶
Overview ¶
Package cache contains common interface for caches with Get, Delete and Set methods and in memory cache implementation
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Interface ¶
type Interface interface { Get(key string) (string, error) Set(key, object string) Delete(key string) }
Interface contains methods for caches
Click to show internal directories.
Click to hide internal directories.