Documentation ¶
Index ¶
- Variables
- func New(endpoints []string, options *store.Config) (store.Store, error)
- func Register()
- type Redis
- func (r *Redis) AtomicDelete(key string, previous *store.KVPair) (bool, error)
- func (r *Redis) AtomicPut(key string, value []byte, previous *store.KVPair, options *store.WriteOptions) (bool, *store.KVPair, error)
- func (r *Redis) Close()
- func (r *Redis) Delete(key string) error
- func (r *Redis) DeleteTree(directory string) error
- func (r *Redis) Exists(key string) (bool, error)
- func (r *Redis) Get(key string) (*store.KVPair, error)
- func (r *Redis) List(directory string) ([]*store.KVPair, error)
- func (r *Redis) NewLock(key string, options *store.LockOptions) (store.Locker, error)
- func (r *Redis) Put(key string, value []byte, options *store.WriteOptions) error
- func (r *Redis) Watch(key string, stopCh <-chan struct{}) (<-chan *store.KVPair, error)
- func (r *Redis) WatchTree(directory string, stopCh <-chan struct{}) (<-chan []*store.KVPair, error)
Constants ¶
This section is empty.
Variables ¶
View Source
var ( // ErrMultipleEndpointsUnsupported is thrown when there are // multiple endpoints specified for Redis ErrMultipleEndpointsUnsupported = errors.New("redis: does not support multiple endpoints") // ErrTLSUnsupported is thrown when tls config is given ErrTLSUnsupported = errors.New("redis does not support tls") // ErrAbortTryLock is thrown when a user stops trying to seek the lock // by sending a signal to the stop chan, this is used to verify if the // operation succeeded ErrAbortTryLock = errors.New("redis: lock operation aborted") )
Functions ¶
Types ¶
type Redis ¶
type Redis struct {
// contains filtered or unexported fields
}
Redis implements valkeyrie.Store interface with redis backend
func (*Redis) AtomicDelete ¶
AtomicDelete is an atomic delete operation on a single value the value will be deleted if previous matched the one stored in db
func (*Redis) AtomicPut ¶
func (r *Redis) AtomicPut(key string, value []byte, previous *store.KVPair, options *store.WriteOptions) (bool, *store.KVPair, error)
AtomicPut is an atomic CAS operation on a single value. Pass previous = nil to create a new key. we introduced script on this page, so atomicity is guaranteed
func (*Redis) DeleteTree ¶
DeleteTree deletes a range of keys under a given directory glitch: we list all available keys first and then delete them all it costs two operations on redis, so is not atomicity.
func (*Redis) NewLock ¶
NewLock creates a lock for a given key. The returned Locker is not held and must be acquired with `.Lock`. The Value is optional.
Click to show internal directories.
Click to hide internal directories.