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

72 uses

	github.com/go-redis/redis/v8 (current package)
		command.go#L653: type StringCmd struct {
		command.go#L659: var _ Cmder = (*StringCmd)(nil)
		command.go#L661: func NewStringCmd(ctx context.Context, args ...interface{}) *StringCmd {
		command.go#L662: 	return &StringCmd{
		command.go#L670: func (cmd *StringCmd) Val() string {
		command.go#L674: func (cmd *StringCmd) Result() (string, error) {
		command.go#L678: func (cmd *StringCmd) Bytes() ([]byte, error) {
		command.go#L682: func (cmd *StringCmd) Int() (int, error) {
		command.go#L689: func (cmd *StringCmd) Int64() (int64, error) {
		command.go#L696: func (cmd *StringCmd) Uint64() (uint64, error) {
		command.go#L703: func (cmd *StringCmd) Float32() (float32, error) {
		command.go#L714: func (cmd *StringCmd) Float64() (float64, error) {
		command.go#L721: func (cmd *StringCmd) Time() (time.Time, error) {
		command.go#L728: func (cmd *StringCmd) Scan(val interface{}) error {
		command.go#L735: func (cmd *StringCmd) String() string {
		command.go#L739: func (cmd *StringCmd) readReply(rd *proto.Reader) error {
		commands.go#L77: 	ClientGetName(ctx context.Context) *StringCmd
		commands.go#L78: 	Echo(ctx context.Context, message interface{}) *StringCmd
		commands.go#L83: 	Dump(ctx context.Context, key string) *StringCmd
		commands.go#L91: 	ObjectEncoding(ctx context.Context, key string) *StringCmd
		commands.go#L97: 	RandomKey(ctx context.Context) *StringCmd
		commands.go#L111: 	Get(ctx context.Context, key string) *StringCmd
		commands.go#L112: 	GetRange(ctx context.Context, key string, start, end int64) *StringCmd
		commands.go#L113: 	GetSet(ctx context.Context, key string, value interface{}) *StringCmd
		commands.go#L143: 	HGet(ctx context.Context, key, field string) *StringCmd
		commands.go#L157: 	BRPopLPush(ctx context.Context, source, destination string, timeout time.Duration) *StringCmd
		commands.go#L158: 	LIndex(ctx context.Context, key string, index int64) *StringCmd
		commands.go#L163: 	LPop(ctx context.Context, key string) *StringCmd
		commands.go#L170: 	RPop(ctx context.Context, key string) *StringCmd
		commands.go#L171: 	RPopLPush(ctx context.Context, source, destination string) *StringCmd
		commands.go#L185: 	SPop(ctx context.Context, key string) *StringCmd
		commands.go#L187: 	SRandMember(ctx context.Context, key string) *StringCmd
		commands.go#L193: 	XAdd(ctx context.Context, a *XAddArgs) *StringCmd
		commands.go#L262: 	ClientList(ctx context.Context) *StringCmd
		commands.go#L274: 	Info(ctx context.Context, section ...string) *StringCmd
		commands.go#L282: 	DebugObject(ctx context.Context, key string) *StringCmd
		commands.go#L292: 	ScriptLoad(ctx context.Context, script string) *StringCmd
		commands.go#L300: 	ClusterNodes(ctx context.Context) *StringCmd
		commands.go#L306: 	ClusterInfo(ctx context.Context) *StringCmd
		commands.go#L400: func (c cmdable) ClientGetName(ctx context.Context) *StringCmd {
		commands.go#L406: func (c cmdable) Echo(ctx context.Context, message interface{}) *StringCmd {
		commands.go#L444: func (c cmdable) Dump(ctx context.Context, key string) *StringCmd {
		commands.go#L506: func (c cmdable) ObjectEncoding(ctx context.Context, key string) *StringCmd {
		commands.go#L547: func (c cmdable) RandomKey(ctx context.Context) *StringCmd {
		commands.go#L682: func (c cmdable) Get(ctx context.Context, key string) *StringCmd {
		commands.go#L688: func (c cmdable) GetRange(ctx context.Context, key string, start, end int64) *StringCmd {
		commands.go#L694: func (c cmdable) GetSet(ctx context.Context, key string, value interface{}) *StringCmd {
		commands.go#L996: func (c cmdable) HGet(ctx context.Context, key, field string) *StringCmd {
		commands.go#L1113: func (c cmdable) BRPopLPush(ctx context.Context, source, destination string, timeout time.Duration) *StringCmd {
		commands.go#L1126: func (c cmdable) LIndex(ctx context.Context, key string, index int64) *StringCmd {
		commands.go#L1156: func (c cmdable) LPop(ctx context.Context, key string) *StringCmd {
		commands.go#L1218: func (c cmdable) RPop(ctx context.Context, key string) *StringCmd {
		commands.go#L1224: func (c cmdable) RPopLPush(ctx context.Context, source, destination string) *StringCmd {
		commands.go#L1341: func (c cmdable) SPop(ctx context.Context, key string) *StringCmd {
		commands.go#L1355: func (c cmdable) SRandMember(ctx context.Context, key string) *StringCmd {
		commands.go#L1417: func (c cmdable) XAdd(ctx context.Context, a *XAddArgs) *StringCmd {
		commands.go#L2163: func (c cmdable) ClientList(ctx context.Context) *StringCmd {
		commands.go#L2247: func (c cmdable) Info(ctx context.Context, section ...string) *StringCmd {
		commands.go#L2325: func (c cmdable) DebugObject(ctx context.Context, key string) *StringCmd {
		commands.go#L2410: func (c cmdable) ScriptLoad(ctx context.Context, script string) *StringCmd {
		commands.go#L2461: func (c cmdable) ClusterNodes(ctx context.Context) *StringCmd {
		commands.go#L2497: func (c cmdable) ClusterInfo(ctx context.Context) *StringCmd {
		result.go#L54: func NewStringResult(val string, err error) *StringCmd {
		result.go#L55: 	var cmd StringCmd
		script.go#L15: 	ScriptLoad(ctx context.Context, script string) *StringCmd
		script.go#L41: func (s *Script) Load(ctx context.Context, c scripter) *StringCmd {
		sentinel.go#L274: func (c *SentinelClient) Ping(ctx context.Context) *StringCmd {
		sentinel.go#L363: func (c *SentinelClient) CkQuorum(ctx context.Context, name string) *StringCmd {
		sentinel.go#L371: func (c *SentinelClient) Monitor(ctx context.Context, name, ip, port, quorum string) *StringCmd {
		sentinel.go#L378: func (c *SentinelClient) Set(ctx context.Context, name, option, value string) *StringCmd {
		sentinel.go#L387: func (c *SentinelClient) Remove(ctx context.Context, name string) *StringCmd {

	github.com/go-redis/redis_rate/v9
		rate.go#L18: 	ScriptLoad(ctx context.Context, script string) *redis.StringCmd