Documentation ¶ Index ¶ type Store type Value func Parse(value interface{}) Value func (v Value) Int() int func (v Value) Int64() int64 func (v *Value) Scan(value interface{}) error func (v Value) String() string func (v Value) Time() time.Time func (v Value) Value() (driver.Value, error) Constants ¶ This section is empty. Variables ¶ This section is empty. Functions ¶ This section is empty. Types ¶ type Store ¶ type Store interface { Get(ctx context.Context, key string) (Value, error) Save(ctx context.Context, key string, value interface{}) error Expire(ctx context.Context, key string) error List(ctx context.Context) (map[string]Value, error) } type Value ¶ type Value string func Parse ¶ func Parse(value interface{}) Value func (Value) Int ¶ func (v Value) Int() int func (Value) Int64 ¶ func (v Value) Int64() int64 func (*Value) Scan ¶ func (v *Value) Scan(value interface{}) error func (Value) String ¶ func (v Value) String() string func (Value) Time ¶ func (v Value) Time() time.Time func (Value) Value ¶ func (v Value) Value() (driver.Value, error) Source Files ¶ View all Source files property.go store.go Click to show internal directories. Click to hide internal directories.