Documentation ¶
Index ¶
- type MemStore
- func (st *MemStore) AddNamespace(nsName string) error
- func (st *MemStore) DelBool(key string) error
- func (st *MemStore) DelFloat(key string) error
- func (st *MemStore) DelInt(key string) error
- func (st *MemStore) DelInt64(key string) error
- func (st *MemStore) DelString(key string) error
- func (st *MemStore) GetBool(key string) (bool, bool)
- func (st *MemStore) GetFloat(key string) (float64, bool)
- func (st *MemStore) GetInt(key string) (int, bool)
- func (st *MemStore) GetInt64(key string) (int64, bool)
- func (st *MemStore) GetInt64In(namespace, key string) (int64, bool)
- func (st *MemStore) GetString(key string) (string, bool)
- func (st *MemStore) GetStringIn(namespace, key string) (string, bool)
- func (st *MemStore) ListInt64sIn(namespace, key string) (map[string]int64, error)
- func (st *MemStore) ListStringsIn(namespace, key string) (map[string]string, error)
- func (st *MemStore) SetBool(key string, val bool) error
- func (st *MemStore) SetFloat(key string, val float64) error
- func (st *MemStore) SetInt(key string, val int) error
- func (st *MemStore) SetInt64(key string, val int64) error
- func (st *MemStore) SetInt64In(namespace, key string, val int64) error
- func (st *MemStore) SetString(key string, val string) error
- func (st *MemStore) SetStringIn(namespace, key, val string) error
- func (st *MemStore) TryLock(key string) error
- func (st *MemStore) Unlock(key string) error
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type MemStore ¶
type MemStore struct {
// contains filtered or unexported fields
}
func (*MemStore) AddNamespace ¶
func (*MemStore) GetStringIn ¶
func (*MemStore) ListInt64sIn ¶
func (*MemStore) ListStringsIn ¶
func (*MemStore) SetInt64In ¶
func (*MemStore) SetStringIn ¶
Click to show internal directories.
Click to hide internal directories.