Versions in this module Expand all Collapse all v1 v1.15.1 Jun 9, 2025 Changes in this version + var ErrMultipleSortBy error = errors.New("multiple SORTBY steps are not allowed. Sort multiple fields in a single step") + func NewRedisStateStore(log logger.Logger) state.Store + type Query struct + func NewQuery(schemaName string, aliases map[string]string) *Query + func (q *Query) Finalize(filters string, qq *query.Query) error + func (q *Query) VisitAND(f *query.AND) (string, error) + func (q *Query) VisitEQ(f *query.EQ) (string, error) + func (q *Query) VisitGT(f *query.GT) (string, error) + func (q *Query) VisitGTE(f *query.GTE) (string, error) + func (q *Query) VisitIN(f *query.IN) (string, error) + func (q *Query) VisitLT(f *query.LT) (string, error) + func (q *Query) VisitLTE(f *query.LTE) (string, error) + func (q *Query) VisitNEQ(f *query.NEQ) (string, error) + func (q *Query) VisitOR(f *query.OR) (string, error) + type StateStore struct + func (r *StateStore) Close() error + func (r *StateStore) Delete(ctx context.Context, req *state.DeleteRequest) error + func (r *StateStore) Features() []state.Feature + func (r *StateStore) Get(ctx context.Context, req *state.GetRequest) (*state.GetResponse, error) + func (r *StateStore) GetComponentMetadata() (metadataInfo daprmetadata.MetadataMap) + func (r *StateStore) Init(ctx context.Context, metadata state.Metadata) error + func (r *StateStore) Multi(ctx context.Context, request *state.TransactionalStateRequest) error + func (r *StateStore) Ping(ctx context.Context) error + func (r *StateStore) Query(ctx context.Context, req *state.QueryRequest) (*state.QueryResponse, error) + func (r *StateStore) Set(ctx context.Context, req *state.SetRequest) error