Versions in this module Expand all Collapse all v1 v1.0.2 Mar 14, 2024 v1.0.1 Mar 14, 2024 Changes in this version + func NewSsdbCache() cache.Cache + type Cache struct + func (rc *Cache) ClearAll(context.Context) error + func (rc *Cache) Decr(ctx context.Context, key string) error + func (rc *Cache) DelMulti(keys []string) error + func (rc *Cache) Delete(ctx context.Context, key string) error + func (rc *Cache) Get(ctx context.Context, key string) (interface{}, error) + func (rc *Cache) GetMulti(ctx context.Context, keys []string) ([]interface{}, error) + func (rc *Cache) Incr(ctx context.Context, key string) error + func (rc *Cache) IsExist(ctx context.Context, key string) (bool, error) + func (rc *Cache) Put(ctx context.Context, key string, val interface{}, timeout time.Duration) error + func (rc *Cache) Scan(keyStart string, keyEnd string, limit int) ([]string, error) + func (rc *Cache) StartAndGC(config string) error