Documentation
¶
Index ¶
- type Store
- func (p *Store) Get(key string) string
- func (p *Store) Has(key string) bool
- func (p *Store) HasList(key string) bool
- func (p *Store) ListAdd(key, value string)
- func (p *Store) ListGet(key string) []string
- func (p *Store) ListHas(key, value string) bool
- func (p *Store) ListLen(key string) int
- func (p *Store) ListRemove(key, value string)
- func (p *Store) Lock()
- func (p *Store) Ping() error
- func (p *Store) Range(f func(key string, val string) bool)
- func (p *Store) Rem(key string)
- func (p *Store) Set(key string, val string)
- func (p *Store) Type() string
- func (p *Store) Unlock()
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Store ¶
type Store struct {
// contains filtered or unexported fields
}
Store is the struct for this store.Inner implementation
func (*Store) ListRemove ¶
ListRemove removes value from the list at key
Click to show internal directories.
Click to hide internal directories.