Versions in this module Expand all Collapse all v0 v0.0.2 Jul 11, 2023 Changes in this version type Store + func Cache(store Store) Store v0.0.1 Aug 26, 2022 Changes in this version + type Store interface + Expire func(ctx context.Context, key string) error + Get func(ctx context.Context, key string) (Value, error) + List func(ctx context.Context) (map[string]Value, error) + Save func(ctx context.Context, key string, value interface{}) error + type Value string + func Parse(value interface{}) Value + func (v *Value) Scan(value interface{}) error + func (v Value) Int() int + func (v Value) Int64() int64 + func (v Value) String() string + func (v Value) Time() time.Time + func (v Value) Value() (driver.Value, error) Other modules containing this package github.com/fox-one/pkg