type github.com/go-redis/redis/v8.StringSliceCmd

63 uses

	github.com/go-redis/redis/v8 (current package)
		command.go#L782: type StringSliceCmd struct {
		command.go#L788: var _ Cmder = (*StringSliceCmd)(nil)
		command.go#L790: func NewStringSliceCmd(ctx context.Context, args ...interface{}) *StringSliceCmd {
		command.go#L791: 	return &StringSliceCmd{
		command.go#L799: func (cmd *StringSliceCmd) Val() []string {
		command.go#L803: func (cmd *StringSliceCmd) Result() ([]string, error) {
		command.go#L807: func (cmd *StringSliceCmd) String() string {
		command.go#L811: func (cmd *StringSliceCmd) ScanSlice(container interface{}) error {
		command.go#L815: func (cmd *StringSliceCmd) readReply(rd *proto.Reader) error {
		commands.go#L87: 	Keys(ctx context.Context, pattern string) *StringSliceCmd
		commands.go#L102: 	Sort(ctx context.Context, key string, sort *Sort) *StringSliceCmd
		commands.go#L147: 	HKeys(ctx context.Context, key string) *StringSliceCmd
		commands.go#L153: 	HVals(ctx context.Context, key string) *StringSliceCmd
		commands.go#L155: 	BLPop(ctx context.Context, timeout time.Duration, keys ...string) *StringSliceCmd
		commands.go#L156: 	BRPop(ctx context.Context, timeout time.Duration, keys ...string) *StringSliceCmd
		commands.go#L166: 	LRange(ctx context.Context, key string, start, stop int64) *StringSliceCmd
		commands.go#L177: 	SDiff(ctx context.Context, keys ...string) *StringSliceCmd
		commands.go#L179: 	SInter(ctx context.Context, keys ...string) *StringSliceCmd
		commands.go#L182: 	SMembers(ctx context.Context, key string) *StringSliceCmd
		commands.go#L186: 	SPopN(ctx context.Context, key string, count int64) *StringSliceCmd
		commands.go#L188: 	SRandMemberN(ctx context.Context, key string, count int64) *StringSliceCmd
		commands.go#L190: 	SUnion(ctx context.Context, keys ...string) *StringSliceCmd
		commands.go#L212: 	XClaimJustID(ctx context.Context, a *XClaimArgs) *StringSliceCmd
		commands.go#L235: 	ZRange(ctx context.Context, key string, start, stop int64) *StringSliceCmd
		commands.go#L237: 	ZRangeByScore(ctx context.Context, key string, opt *ZRangeBy) *StringSliceCmd
		commands.go#L238: 	ZRangeByLex(ctx context.Context, key string, opt *ZRangeBy) *StringSliceCmd
		commands.go#L245: 	ZRevRange(ctx context.Context, key string, start, stop int64) *StringSliceCmd
		commands.go#L247: 	ZRevRangeByScore(ctx context.Context, key string, opt *ZRangeBy) *StringSliceCmd
		commands.go#L248: 	ZRevRangeByLex(ctx context.Context, key string, opt *ZRangeBy) *StringSliceCmd
		commands.go#L295: 	PubSubChannels(ctx context.Context, pattern string) *StringSliceCmd
		commands.go#L308: 	ClusterGetKeysInSlot(ctx context.Context, slot int, count int) *StringSliceCmd
		commands.go#L314: 	ClusterSlaves(ctx context.Context, nodeID string) *StringSliceCmd
		commands.go#L326: 	GeoHash(ctx context.Context, key string, members ...string) *StringSliceCmd
		commands.go#L473: func (c cmdable) Keys(ctx context.Context, pattern string) *StringSliceCmd {
		commands.go#L618: func (c cmdable) Sort(ctx context.Context, key string, sort *Sort) *StringSliceCmd {
		commands.go#L1020: func (c cmdable) HKeys(ctx context.Context, key string) *StringSliceCmd {
		commands.go#L1079: func (c cmdable) HVals(ctx context.Context, key string) *StringSliceCmd {
		commands.go#L1087: func (c cmdable) BLPop(ctx context.Context, timeout time.Duration, keys ...string) *StringSliceCmd {
		commands.go#L1100: func (c cmdable) BRPop(ctx context.Context, timeout time.Duration, keys ...string) *StringSliceCmd {
		commands.go#L1182: func (c cmdable) LRange(ctx context.Context, key string, start, stop int64) *StringSliceCmd {
		commands.go#L1268: func (c cmdable) SDiff(ctx context.Context, keys ...string) *StringSliceCmd {
		commands.go#L1291: func (c cmdable) SInter(ctx context.Context, keys ...string) *StringSliceCmd {
		commands.go#L1321: func (c cmdable) SMembers(ctx context.Context, key string) *StringSliceCmd {
		commands.go#L1348: func (c cmdable) SPopN(ctx context.Context, key string, count int64) *StringSliceCmd {
		commands.go#L1362: func (c cmdable) SRandMemberN(ctx context.Context, key string, count int64) *StringSliceCmd {
		commands.go#L1378: func (c cmdable) SUnion(ctx context.Context, keys ...string) *StringSliceCmd {
		commands.go#L1631: func (c cmdable) XClaimJustID(ctx context.Context, a *XClaimArgs) *StringSliceCmd {
		commands.go#L1898: func (c cmdable) zRange(ctx context.Context, key string, start, stop int64, withScores bool) *StringSliceCmd {
		commands.go#L1913: func (c cmdable) ZRange(ctx context.Context, key string, start, stop int64) *StringSliceCmd {
		commands.go#L1928: func (c cmdable) zRangeBy(ctx context.Context, zcmd, key string, opt *ZRangeBy, withScores bool) *StringSliceCmd {
		commands.go#L1946: func (c cmdable) ZRangeByScore(ctx context.Context, key string, opt *ZRangeBy) *StringSliceCmd {
		commands.go#L1950: func (c cmdable) ZRangeByLex(ctx context.Context, key string, opt *ZRangeBy) *StringSliceCmd {
		commands.go#L2009: func (c cmdable) ZRevRange(ctx context.Context, key string, start, stop int64) *StringSliceCmd {
		commands.go#L2021: func (c cmdable) zRevRangeBy(ctx context.Context, zcmd, key string, opt *ZRangeBy) *StringSliceCmd {
		commands.go#L2036: func (c cmdable) ZRevRangeByScore(ctx context.Context, key string, opt *ZRangeBy) *StringSliceCmd {
		commands.go#L2040: func (c cmdable) ZRevRangeByLex(ctx context.Context, key string, opt *ZRangeBy) *StringSliceCmd {
		commands.go#L2425: func (c cmdable) PubSubChannels(ctx context.Context, pattern string) *StringSliceCmd {
		commands.go#L2509: func (c cmdable) ClusterGetKeysInSlot(ctx context.Context, slot int, count int) *StringSliceCmd {
		commands.go#L2554: func (c cmdable) ClusterSlaves(ctx context.Context, nodeID string) *StringSliceCmd {
		commands.go#L2668: func (c cmdable) GeoHash(ctx context.Context, key string, members ...string) *StringSliceCmd {
		result.go#L70: func NewStringSliceResult(val []string, err error) *StringSliceCmd {
		result.go#L71: 	var cmd StringSliceCmd
		sentinel.go#L300: func (c *SentinelClient) GetMasterAddrByName(ctx context.Context, name string) *StringSliceCmd {