Documentation ¶
Index ¶
- type DataStore
- type FileStore
- func (fs *FileStore) Close() error
- func (fs *FileStore) Delete(key string) error
- func (fs *FileStore) Get(key string) (string, bool)
- func (fs *FileStore) Keys() ([]string, error)
- func (fs *FileStore) Set(key string, value string) error
- func (fs *FileStore) Sync() error
- func (fs *FileStore) Values() ([]string, error)
- type MemoryDataStore
- type PersistentDataStore
- type RedisStore
- func (r *RedisStore) Delete(key string) error
- func (r *RedisStore) Get(key string) (string, bool)
- func (r *RedisStore) IsValidConnection() (bool, error)
- func (r *RedisStore) Keys() ([]string, error)
- func (r *RedisStore) Set(key string, value string) error
- func (r *RedisStore) Values() ([]string, error)
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type DataStore ¶
type DataStore interface { Get(key string) (string, bool) Set(key string, value string) error Delete(key string) error Keys() ([]string, error) Values() ([]string, error) }
DataStore interface, main interface for all datastores
type FileStore ¶
type FileStore struct { SaveOnChange bool // contains filtered or unexported fields }
func NewFileStore ¶
type MemoryDataStore ¶
type MemoryDataStore struct {
// contains filtered or unexported fields
}
MemoryDataStore Memory based datastore
func NewMemoryDataStore ¶
func NewMemoryDataStore() MemoryDataStore
func (*MemoryDataStore) Delete ¶
func (m *MemoryDataStore) Delete(key string) error
func (*MemoryDataStore) Keys ¶
func (m *MemoryDataStore) Keys() ([]string, error)
func (*MemoryDataStore) Values ¶
func (m *MemoryDataStore) Values() ([]string, error)
type PersistentDataStore ¶
PersistentDataStore flushes to some storage medium
type RedisStore ¶
type RedisStore struct {
// contains filtered or unexported fields
}
RedisStore Redis Backed datastore
func NewRedisStore ¶
func NewRedisStore(pool *redis.Pool, prefix string) (*RedisStore, error)
func (*RedisStore) Delete ¶
func (r *RedisStore) Delete(key string) error
func (*RedisStore) IsValidConnection ¶
func (r *RedisStore) IsValidConnection() (bool, error)
func (*RedisStore) Keys ¶
func (r *RedisStore) Keys() ([]string, error)
func (*RedisStore) Values ¶
func (r *RedisStore) Values() ([]string, error)
Click to show internal directories.
Click to hide internal directories.