Documentation ¶
Index ¶
- Variables
- type Query
- type StateStore
- func (r *StateStore) Close() error
- func (r *StateStore) Delete(req *state.DeleteRequest) error
- func (r *StateStore) Features() []state.Feature
- func (r *StateStore) Get(req *state.GetRequest) (*state.GetResponse, error)
- func (r *StateStore) Init(metadata state.Metadata) error
- func (r *StateStore) Multi(request *state.TransactionalStateRequest) error
- func (r *StateStore) Ping() error
- func (r *StateStore) Query(req *state.QueryRequest) (*state.QueryResponse, error)
- func (r *StateStore) Set(req *state.SetRequest) error
Constants ¶
This section is empty.
Variables ¶
View Source
var ErrMultipleSortBy error = errors.New("multiple SORTBY steps are not allowed. Sort multiple fields in a single step")
Functions ¶
This section is empty.
Types ¶
type Query ¶ added in v1.7.0
type Query struct {
// contains filtered or unexported fields
}
type StateStore ¶
type StateStore struct { state.DefaultBulkStore // contains filtered or unexported fields }
StateStore is a Redis state store.
func NewRedisStateStore ¶
func NewRedisStateStore(logger logger.Logger) *StateStore
NewRedisStateStore returns a new redis state store.
func (*StateStore) Close ¶ added in v1.2.0
func (r *StateStore) Close() error
func (*StateStore) Delete ¶
func (r *StateStore) Delete(req *state.DeleteRequest) error
Delete performs a delete operation.
func (*StateStore) Features ¶ added in v1.1.1
func (r *StateStore) Features() []state.Feature
Features returns the features available in this state store.
func (*StateStore) Get ¶
func (r *StateStore) Get(req *state.GetRequest) (*state.GetResponse, error)
Get retrieves state from redis with a key.
func (*StateStore) Init ¶
func (r *StateStore) Init(metadata state.Metadata) error
Init does metadata and connection parsing.
func (*StateStore) Multi ¶
func (r *StateStore) Multi(request *state.TransactionalStateRequest) error
Multi performs a transactional operation. succeeds only if all operations succeed, and fails if one or more operations fail.
func (*StateStore) Ping ¶ added in v1.4.4
func (r *StateStore) Ping() error
func (*StateStore) Query ¶ added in v1.7.0
func (r *StateStore) Query(req *state.QueryRequest) (*state.QueryResponse, error)
Query executes a query against store.
func (*StateStore) Set ¶
func (r *StateStore) Set(req *state.SetRequest) error
Set saves state into redis.
Click to show internal directories.
Click to hide internal directories.