Documentation ¶
Index ¶
- Constants
- type RedisClusterStore
- type RedisStore
- type UniversalRedisStore
- func (store *UniversalRedisStore) BeginTransaction(ctx context.Context) (context.Context, error)
- func (store *UniversalRedisStore) CommitTransaction(ctx context.Context) error
- func (store *UniversalRedisStore) DeleteEntry(ctx context.Context, fullpath util.FullPath) (err error)
- func (store *UniversalRedisStore) DeleteFolderChildren(ctx context.Context, fullpath util.FullPath) (err error)
- func (store *UniversalRedisStore) FindEntry(ctx context.Context, fullpath util.FullPath) (entry *filer.Entry, err error)
- func (store *UniversalRedisStore) InsertEntry(ctx context.Context, entry *filer.Entry) (err error)
- func (store *UniversalRedisStore) KvDelete(ctx context.Context, key []byte) (err error)
- func (store *UniversalRedisStore) KvGet(ctx context.Context, key []byte) (value []byte, err error)
- func (store *UniversalRedisStore) KvPut(ctx context.Context, key []byte, value []byte) (err error)
- func (store *UniversalRedisStore) ListDirectoryEntries(ctx context.Context, dirPath util.FullPath, startFileName string, ...) (lastFileName string, err error)
- func (store *UniversalRedisStore) ListDirectoryPrefixedEntries(ctx context.Context, dirPath util.FullPath, startFileName string, ...) (lastFileName string, err error)
- func (store *UniversalRedisStore) RollbackTransaction(ctx context.Context) error
- func (store *UniversalRedisStore) Shutdown()
- func (store *UniversalRedisStore) UpdateEntry(ctx context.Context, entry *filer.Entry) (err error)
Constants ¶
View Source
const (
DIR_LIST_MARKER = "\x00"
)
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type RedisClusterStore ¶
type RedisClusterStore struct {
UniversalRedisStore
}
func (*RedisClusterStore) GetName ¶
func (store *RedisClusterStore) GetName() string
func (*RedisClusterStore) Initialize ¶
func (store *RedisClusterStore) Initialize(configuration util.Configuration, prefix string) (err error)
type RedisStore ¶
type RedisStore struct {
UniversalRedisStore
}
func (*RedisStore) GetName ¶
func (store *RedisStore) GetName() string
func (*RedisStore) Initialize ¶
func (store *RedisStore) Initialize(configuration util.Configuration, prefix string) (err error)
type UniversalRedisStore ¶
type UniversalRedisStore struct {
Client redis.UniversalClient
}
func (*UniversalRedisStore) BeginTransaction ¶
func (*UniversalRedisStore) CommitTransaction ¶
func (store *UniversalRedisStore) CommitTransaction(ctx context.Context) error
func (*UniversalRedisStore) DeleteEntry ¶
func (*UniversalRedisStore) DeleteFolderChildren ¶
func (*UniversalRedisStore) InsertEntry ¶
func (*UniversalRedisStore) KvDelete ¶
func (store *UniversalRedisStore) KvDelete(ctx context.Context, key []byte) (err error)
func (*UniversalRedisStore) ListDirectoryEntries ¶
func (*UniversalRedisStore) ListDirectoryPrefixedEntries ¶
func (*UniversalRedisStore) RollbackTransaction ¶
func (store *UniversalRedisStore) RollbackTransaction(ctx context.Context) error
func (*UniversalRedisStore) Shutdown ¶
func (store *UniversalRedisStore) Shutdown()
func (*UniversalRedisStore) UpdateEntry ¶
Click to show internal directories.
Click to hide internal directories.