mirror of
https://gitee.com/johng/gf.git
synced 2024-11-29 18:57:44 +08:00
6ff4ed84e5
* v2.3.0 * up * up * up
34 lines
1.6 KiB
Go
34 lines
1.6 KiB
Go
// Copyright GoFrame Author(https://goframe.org). All Rights Reserved.
|
|
//
|
|
// This Source Code Form is subject to the terms of the MIT License.
|
|
// If a copy of the MIT was not distributed with this file,
|
|
// You can obtain one at https://github.com/gogf/gf.
|
|
|
|
package gredis
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/gogf/gf/v2/container/gvar"
|
|
)
|
|
|
|
// IGroupSet manages redis set operations.
|
|
// Implements see redis.GroupSet.
|
|
type IGroupSet interface {
|
|
SAdd(ctx context.Context, key string, member interface{}, members ...interface{}) (int64, error)
|
|
SIsMember(ctx context.Context, key string, member interface{}) (int64, error)
|
|
SPop(ctx context.Context, key string, count ...int) (*gvar.Var, error)
|
|
SRandMember(ctx context.Context, key string, count ...int) (*gvar.Var, error)
|
|
SRem(ctx context.Context, key string, member interface{}, members ...interface{}) (int64, error)
|
|
SMove(ctx context.Context, source, destination string, member interface{}) (int64, error)
|
|
SCard(ctx context.Context, key string) (int64, error)
|
|
SMembers(ctx context.Context, key string) (gvar.Vars, error)
|
|
SMIsMember(ctx context.Context, key, member interface{}, members ...interface{}) ([]int, error)
|
|
SInter(ctx context.Context, key string, keys ...string) (gvar.Vars, error)
|
|
SInterStore(ctx context.Context, destination string, key string, keys ...string) (int64, error)
|
|
SUnion(ctx context.Context, key string, keys ...string) (gvar.Vars, error)
|
|
SUnionStore(ctx context.Context, destination, key string, keys ...string) (int64, error)
|
|
SDiff(ctx context.Context, key string, keys ...string) (gvar.Vars, error)
|
|
SDiffStore(ctx context.Context, destination string, key string, keys ...string) (int64, error)
|
|
}
|