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

117 uses

	github.com/go-redis/redis/v8 (current package)
		cluster.go#L1343: 				statusCmd := cmds[0].(*StatusCmd)
		cluster.go#L1365: 	statusCmd *StatusCmd,
		command.go#L371: type StatusCmd struct {
		command.go#L377: var _ Cmder = (*StatusCmd)(nil)
		command.go#L379: func NewStatusCmd(ctx context.Context, args ...interface{}) *StatusCmd {
		command.go#L380: 	return &StatusCmd{
		command.go#L388: func (cmd *StatusCmd) Val() string {
		command.go#L392: func (cmd *StatusCmd) Result() (string, error) {
		command.go#L396: func (cmd *StatusCmd) String() string {
		command.go#L400: func (cmd *StatusCmd) readReply(rd *proto.Reader) error {
		commands.go#L79: 	Ping(ctx context.Context) *StatusCmd
		commands.go#L80: 	Quit(ctx context.Context) *StatusCmd
		commands.go#L88: 	Migrate(ctx context.Context, host, port, key string, db int, timeout time.Duration) *StatusCmd
		commands.go#L98: 	Rename(ctx context.Context, key, newkey string) *StatusCmd
		commands.go#L100: 	Restore(ctx context.Context, key string, ttl time.Duration, value string) *StatusCmd
		commands.go#L101: 	RestoreReplace(ctx context.Context, key string, ttl time.Duration, value string) *StatusCmd
		commands.go#L107: 	Type(ctx context.Context, key string) *StatusCmd
		commands.go#L118: 	MSet(ctx context.Context, values ...interface{}) *StatusCmd
		commands.go#L120: 	Set(ctx context.Context, key string, value interface{}, expiration time.Duration) *StatusCmd
		commands.go#L168: 	LSet(ctx context.Context, key string, index int64, value interface{}) *StatusCmd
		commands.go#L169: 	LTrim(ctx context.Context, key string, start, stop int64) *StatusCmd
		commands.go#L202: 	XGroupCreate(ctx context.Context, stream, group, start string) *StatusCmd
		commands.go#L203: 	XGroupCreateMkStream(ctx context.Context, stream, group, start string) *StatusCmd
		commands.go#L204: 	XGroupSetID(ctx context.Context, stream, group, start string) *StatusCmd
		commands.go#L256: 	PFMerge(ctx context.Context, dest string, keys ...string) *StatusCmd
		commands.go#L258: 	BgRewriteAOF(ctx context.Context) *StatusCmd
		commands.go#L259: 	BgSave(ctx context.Context) *StatusCmd
		commands.go#L260: 	ClientKill(ctx context.Context, ipPort string) *StatusCmd
		commands.go#L266: 	ConfigResetStat(ctx context.Context) *StatusCmd
		commands.go#L267: 	ConfigSet(ctx context.Context, parameter, value string) *StatusCmd
		commands.go#L268: 	ConfigRewrite(ctx context.Context) *StatusCmd
		commands.go#L270: 	FlushAll(ctx context.Context) *StatusCmd
		commands.go#L271: 	FlushAllAsync(ctx context.Context) *StatusCmd
		commands.go#L272: 	FlushDB(ctx context.Context) *StatusCmd
		commands.go#L273: 	FlushDBAsync(ctx context.Context) *StatusCmd
		commands.go#L276: 	Save(ctx context.Context) *StatusCmd
		commands.go#L277: 	Shutdown(ctx context.Context) *StatusCmd
		commands.go#L278: 	ShutdownSave(ctx context.Context) *StatusCmd
		commands.go#L279: 	ShutdownNoSave(ctx context.Context) *StatusCmd
		commands.go#L280: 	SlaveOf(ctx context.Context, host, port string) *StatusCmd
		commands.go#L283: 	ReadOnly(ctx context.Context) *StatusCmd
		commands.go#L284: 	ReadWrite(ctx context.Context) *StatusCmd
		commands.go#L290: 	ScriptFlush(ctx context.Context) *StatusCmd
		commands.go#L291: 	ScriptKill(ctx context.Context) *StatusCmd
		commands.go#L301: 	ClusterMeet(ctx context.Context, host, port string) *StatusCmd
		commands.go#L302: 	ClusterForget(ctx context.Context, nodeID string) *StatusCmd
		commands.go#L303: 	ClusterReplicate(ctx context.Context, nodeID string) *StatusCmd
		commands.go#L304: 	ClusterResetSoft(ctx context.Context) *StatusCmd
		commands.go#L305: 	ClusterResetHard(ctx context.Context) *StatusCmd
		commands.go#L311: 	ClusterDelSlots(ctx context.Context, slots ...int) *StatusCmd
		commands.go#L312: 	ClusterDelSlotsRange(ctx context.Context, min, max int) *StatusCmd
		commands.go#L313: 	ClusterSaveConfig(ctx context.Context) *StatusCmd
		commands.go#L315: 	ClusterFailover(ctx context.Context) *StatusCmd
		commands.go#L316: 	ClusterAddSlots(ctx context.Context, slots ...int) *StatusCmd
		commands.go#L317: 	ClusterAddSlotsRange(ctx context.Context, min, max int) *StatusCmd
		commands.go#L331: 	Auth(ctx context.Context, password string) *StatusCmd
		commands.go#L332: 	AuthACL(ctx context.Context, username, password string) *StatusCmd
		commands.go#L333: 	Select(ctx context.Context, index int) *StatusCmd
		commands.go#L334: 	SwapDB(ctx context.Context, index1, index2 int) *StatusCmd
		commands.go#L351: func (c statefulCmdable) Auth(ctx context.Context, password string) *StatusCmd {
		commands.go#L360: func (c statefulCmdable) AuthACL(ctx context.Context, username, password string) *StatusCmd {
		commands.go#L372: func (c statefulCmdable) Select(ctx context.Context, index int) *StatusCmd {
		commands.go#L378: func (c statefulCmdable) SwapDB(ctx context.Context, index1, index2 int) *StatusCmd {
		commands.go#L412: func (c cmdable) Ping(ctx context.Context) *StatusCmd {
		commands.go#L418: func (c cmdable) Quit(ctx context.Context) *StatusCmd {
		commands.go#L479: func (c cmdable) Migrate(ctx context.Context, host, port, key string, db int, timeout time.Duration) *StatusCmd {
		commands.go#L553: func (c cmdable) Rename(ctx context.Context, key, newkey string) *StatusCmd {
		commands.go#L565: func (c cmdable) Restore(ctx context.Context, key string, ttl time.Duration, value string) *StatusCmd {
		commands.go#L577: func (c cmdable) RestoreReplace(ctx context.Context, key string, ttl time.Duration, value string) *StatusCmd {
		commands.go#L657: func (c cmdable) Type(ctx context.Context, key string) *StatusCmd {
		commands.go#L733: func (c cmdable) MSet(ctx context.Context, values ...interface{}) *StatusCmd {
		commands.go#L759: func (c cmdable) Set(ctx context.Context, key string, value interface{}, expiration time.Duration) *StatusCmd {
		commands.go#L1200: func (c cmdable) LSet(ctx context.Context, key string, index int64, value interface{}) *StatusCmd {
		commands.go#L1206: func (c cmdable) LTrim(ctx context.Context, key string, start, stop int64) *StatusCmd {
		commands.go#L1516: func (c cmdable) XGroupCreate(ctx context.Context, stream, group, start string) *StatusCmd {
		commands.go#L1522: func (c cmdable) XGroupCreateMkStream(ctx context.Context, stream, group, start string) *StatusCmd {
		commands.go#L1528: func (c cmdable) XGroupSetID(ctx context.Context, stream, group, start string) *StatusCmd {
		commands.go#L2116: func (c cmdable) PFMerge(ctx context.Context, dest string, keys ...string) *StatusCmd {
		commands.go#L2130: func (c cmdable) BgRewriteAOF(ctx context.Context) *StatusCmd {
		commands.go#L2136: func (c cmdable) BgSave(ctx context.Context) *StatusCmd {
		commands.go#L2142: func (c cmdable) ClientKill(ctx context.Context, ipPort string) *StatusCmd {
		commands.go#L2199: func (c cmdable) ConfigResetStat(ctx context.Context) *StatusCmd {
		commands.go#L2205: func (c cmdable) ConfigSet(ctx context.Context, parameter, value string) *StatusCmd {
		commands.go#L2211: func (c cmdable) ConfigRewrite(ctx context.Context) *StatusCmd {
		commands.go#L2223: func (c cmdable) FlushAll(ctx context.Context) *StatusCmd {
		commands.go#L2229: func (c cmdable) FlushAllAsync(ctx context.Context) *StatusCmd {
		commands.go#L2235: func (c cmdable) FlushDB(ctx context.Context) *StatusCmd {
		commands.go#L2241: func (c cmdable) FlushDBAsync(ctx context.Context) *StatusCmd {
		commands.go#L2263: func (c cmdable) Save(ctx context.Context) *StatusCmd {
		commands.go#L2269: func (c cmdable) shutdown(ctx context.Context, modifier string) *StatusCmd {
		commands.go#L2291: func (c cmdable) Shutdown(ctx context.Context) *StatusCmd {
		commands.go#L2295: func (c cmdable) ShutdownSave(ctx context.Context) *StatusCmd {
		commands.go#L2299: func (c cmdable) ShutdownNoSave(ctx context.Context) *StatusCmd {
		commands.go#L2303: func (c cmdable) SlaveOf(ctx context.Context, host, port string) *StatusCmd {
		commands.go#L2331: func (c cmdable) ReadOnly(ctx context.Context) *StatusCmd {
		commands.go#L2337: func (c cmdable) ReadWrite(ctx context.Context) *StatusCmd {
		commands.go#L2398: func (c cmdable) ScriptFlush(ctx context.Context) *StatusCmd {
		commands.go#L2404: func (c cmdable) ScriptKill(ctx context.Context) *StatusCmd {
		commands.go#L2467: func (c cmdable) ClusterMeet(ctx context.Context, host, port string) *StatusCmd {
		commands.go#L2473: func (c cmdable) ClusterForget(ctx context.Context, nodeID string) *StatusCmd {
		commands.go#L2479: func (c cmdable) ClusterReplicate(ctx context.Context, nodeID string) *StatusCmd {
		commands.go#L2485: func (c cmdable) ClusterResetSoft(ctx context.Context) *StatusCmd {
		commands.go#L2491: func (c cmdable) ClusterResetHard(ctx context.Context) *StatusCmd {
		commands.go#L2527: func (c cmdable) ClusterDelSlots(ctx context.Context, slots ...int) *StatusCmd {
		commands.go#L2539: func (c cmdable) ClusterDelSlotsRange(ctx context.Context, min, max int) *StatusCmd {
		commands.go#L2548: func (c cmdable) ClusterSaveConfig(ctx context.Context) *StatusCmd {
		commands.go#L2560: func (c cmdable) ClusterFailover(ctx context.Context) *StatusCmd {
		commands.go#L2566: func (c cmdable) ClusterAddSlots(ctx context.Context, slots ...int) *StatusCmd {
		commands.go#L2578: func (c cmdable) ClusterAddSlotsRange(ctx context.Context, min, max int) *StatusCmd {
		redis.go#L456: 		statusCmd := cmds[0].(*StatusCmd)
		redis.go#L481: func txPipelineReadQueued(rd *proto.Reader, statusCmd *StatusCmd, cmds []Cmder) error {
		result.go#L22: func NewStatusResult(val string, err error) *StatusCmd {
		result.go#L23: 	var cmd StatusCmd
		sentinel.go#L314: func (c *SentinelClient) Failover(ctx context.Context, name string) *StatusCmd {
		sentinel.go#L332: func (c *SentinelClient) FlushConfig(ctx context.Context) *StatusCmd {
		tx.go#L88: func (c *Tx) Watch(ctx context.Context, keys ...string) *StatusCmd {
		tx.go#L100: func (c *Tx) Unwatch(ctx context.Context, keys ...string) *StatusCmd {