func github.com/go-redis/redis/v8.NewStatusCmd

50 uses

	github.com/go-redis/redis/v8 (current package)
		command.go#L379: func NewStatusCmd(ctx context.Context, args ...interface{}) *StatusCmd {
		commands.go#L352: 	cmd := NewStatusCmd(ctx, "auth", password)
		commands.go#L361: 	cmd := NewStatusCmd(ctx, "auth", username, password)
		commands.go#L373: 	cmd := NewStatusCmd(ctx, "select", index)
		commands.go#L379: 	cmd := NewStatusCmd(ctx, "swapdb", index1, index2)
		commands.go#L413: 	cmd := NewStatusCmd(ctx, "ping")
		commands.go#L480: 	cmd := NewStatusCmd(
		commands.go#L554: 	cmd := NewStatusCmd(ctx, "rename", key, newkey)
		commands.go#L566: 	cmd := NewStatusCmd(
		commands.go#L578: 	cmd := NewStatusCmd(
		commands.go#L658: 	cmd := NewStatusCmd(ctx, "type", key)
		commands.go#L737: 	cmd := NewStatusCmd(ctx, args...)
		commands.go#L771: 	cmd := NewStatusCmd(ctx, args...)
		commands.go#L1201: 	cmd := NewStatusCmd(ctx, "lset", key, index, value)
		commands.go#L1207: 	cmd := NewStatusCmd(
		commands.go#L1517: 	cmd := NewStatusCmd(ctx, "xgroup", "create", stream, group, start)
		commands.go#L1523: 	cmd := NewStatusCmd(ctx, "xgroup", "create", stream, group, start, "mkstream")
		commands.go#L1529: 	cmd := NewStatusCmd(ctx, "xgroup", "setid", stream, group, start)
		commands.go#L2123: 	cmd := NewStatusCmd(ctx, args...)
		commands.go#L2131: 	cmd := NewStatusCmd(ctx, "bgrewriteaof")
		commands.go#L2137: 	cmd := NewStatusCmd(ctx, "bgsave")
		commands.go#L2143: 	cmd := NewStatusCmd(ctx, "client", "kill", ipPort)
		commands.go#L2200: 	cmd := NewStatusCmd(ctx, "config", "resetstat")
		commands.go#L2206: 	cmd := NewStatusCmd(ctx, "config", "set", parameter, value)
		commands.go#L2212: 	cmd := NewStatusCmd(ctx, "config", "rewrite")
		commands.go#L2224: 	cmd := NewStatusCmd(ctx, "flushall")
		commands.go#L2230: 	cmd := NewStatusCmd(ctx, "flushall", "async")
		commands.go#L2236: 	cmd := NewStatusCmd(ctx, "flushdb")
		commands.go#L2242: 	cmd := NewStatusCmd(ctx, "flushdb", "async")
		commands.go#L2264: 	cmd := NewStatusCmd(ctx, "save")
		commands.go#L2276: 	cmd := NewStatusCmd(ctx, args...)
		commands.go#L2304: 	cmd := NewStatusCmd(ctx, "slaveof", host, port)
		commands.go#L2332: 	cmd := NewStatusCmd(ctx, "readonly")
		commands.go#L2338: 	cmd := NewStatusCmd(ctx, "readwrite")
		commands.go#L2399: 	cmd := NewStatusCmd(ctx, "script", "flush")
		commands.go#L2405: 	cmd := NewStatusCmd(ctx, "script", "kill")
		commands.go#L2468: 	cmd := NewStatusCmd(ctx, "cluster", "meet", host, port)
		commands.go#L2474: 	cmd := NewStatusCmd(ctx, "cluster", "forget", nodeID)
		commands.go#L2480: 	cmd := NewStatusCmd(ctx, "cluster", "replicate", nodeID)
		commands.go#L2486: 	cmd := NewStatusCmd(ctx, "cluster", "reset", "soft")
		commands.go#L2492: 	cmd := NewStatusCmd(ctx, "cluster", "reset", "hard")
		commands.go#L2534: 	cmd := NewStatusCmd(ctx, args...)
		commands.go#L2549: 	cmd := NewStatusCmd(ctx, "cluster", "saveconfig")
		commands.go#L2561: 	cmd := NewStatusCmd(ctx, "cluster", "failover")
		commands.go#L2573: 	cmd := NewStatusCmd(ctx, args...)
		redis.go#L476: 	cmds[0] = NewStatusCmd(ctx, "multi")
		sentinel.go#L315: 	cmd := NewStatusCmd(ctx, "sentinel", "failover", name)
		sentinel.go#L333: 	cmd := NewStatusCmd(ctx, "sentinel", "flushconfig")
		tx.go#L94: 	cmd := NewStatusCmd(ctx, args...)
		tx.go#L106: 	cmd := NewStatusCmd(ctx, args...)