Documentation ¶ Index ¶ type BigCache func (b *BigCache) Delete(key string) error func (b *BigCache) Get(key string) (any, error) func (b *BigCache) Set(key string, value any) error type BigCacheMethod func NewBigCache(ctx context.Context, life time.Duration) (BigCacheMethod, error) Constants ¶ This section is empty. Variables ¶ This section is empty. Functions ¶ This section is empty. Types ¶ type BigCache ¶ type BigCache struct { // contains filtered or unexported fields } func (*BigCache) Delete ¶ func (b *BigCache) Delete(key string) error func (*BigCache) Get ¶ func (b *BigCache) Get(key string) (any, error) func (*BigCache) Set ¶ func (b *BigCache) Set(key string, value any) error type BigCacheMethod ¶ type BigCacheMethod interface { Get(key string) (any, error) Set(key string, value any) error Delete(key string) error // contains filtered or unexported methods } func NewBigCache ¶ func NewBigCache(ctx context.Context, life time.Duration) (BigCacheMethod, error) Source Files ¶ View all Source files big.go Click to show internal directories. Click to hide internal directories.