Documentation ¶
Index ¶
- func NewInmem(_ map[string]string, logger log.Logger) (physical.Backend, error)
- func NewInmemHA(_ map[string]string, logger log.Logger) (physical.Backend, error)
- func NewTransactionalInmem(_ map[string]string, logger log.Logger) (physical.Backend, error)
- func NewTransactionalInmemHA(_ map[string]string, logger log.Logger) (physical.Backend, error)
- type InmemBackend
- func (i *InmemBackend) Delete(key string) error
- func (i *InmemBackend) DeleteInternal(key string) error
- func (i *InmemBackend) Get(key string) (*physical.Entry, error)
- func (i *InmemBackend) GetInternal(key string) (*physical.Entry, error)
- func (i *InmemBackend) List(prefix string) ([]string, error)
- func (i *InmemBackend) ListInternal(prefix string) ([]string, error)
- func (i *InmemBackend) Put(entry *physical.Entry) error
- func (i *InmemBackend) PutInternal(entry *physical.Entry) error
- type InmemHABackend
- type InmemLock
- type TransactionalInmemBackend
- type TransactionalInmemHABackend
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func NewInmemHA ¶
NewInmemHA constructs a new in-memory HA backend. This is only for testing.
func NewTransactionalInmem ¶
Basically for now just creates a permit pool of size 1 so only one operation can run at a time
Types ¶
type InmemBackend ¶
InmemBackend is an in-memory only physical backend. It is useful for testing and development situations where the data is not expected to be durable.
func (*InmemBackend) Delete ¶
func (i *InmemBackend) Delete(key string) error
Delete is used to permanently delete an entry
func (*InmemBackend) DeleteInternal ¶
func (i *InmemBackend) DeleteInternal(key string) error
func (*InmemBackend) Get ¶
func (i *InmemBackend) Get(key string) (*physical.Entry, error)
Get is used to fetch an entry
func (*InmemBackend) GetInternal ¶
func (i *InmemBackend) GetInternal(key string) (*physical.Entry, error)
func (*InmemBackend) List ¶
func (i *InmemBackend) List(prefix string) ([]string, error)
List is used ot list all the keys under a given prefix, up to the next prefix.
func (*InmemBackend) ListInternal ¶
func (i *InmemBackend) ListInternal(prefix string) ([]string, error)
func (*InmemBackend) Put ¶
func (i *InmemBackend) Put(entry *physical.Entry) error
Put is used to insert or update an entry
func (*InmemBackend) PutInternal ¶
func (i *InmemBackend) PutInternal(entry *physical.Entry) error
type InmemHABackend ¶
func (*InmemHABackend) HAEnabled ¶
func (i *InmemHABackend) HAEnabled() bool
HAEnabled indicates whether the HA functionality should be exposed. Currently always returns true.
func (*InmemHABackend) LockMapSize ¶
func (i *InmemHABackend) LockMapSize() int
LockMapSize is used in some tests to determine whether this backend has ever been used for HA purposes rather than simply for storage
type InmemLock ¶
type InmemLock struct {
// contains filtered or unexported fields
}
InmemLock is an in-memory Lock implementation for the HABackend
type TransactionalInmemBackend ¶
type TransactionalInmemBackend struct {
InmemBackend
}
func (*TransactionalInmemBackend) Transaction ¶
func (t *TransactionalInmemBackend) Transaction(txns []physical.TxnEntry) error
Implements the transaction interface
type TransactionalInmemHABackend ¶
type TransactionalInmemHABackend struct { physical.Transactional InmemHABackend }