Do is an API for executing any command. If a certain Redis command is not yet supported, you can use Do to execute it.
(ctx context.Context, args ...interface{})
| 29 | // Do is an API for executing any command. |
| 30 | // If a certain Redis command is not yet supported, you can use Do to execute it. |
| 31 | Do(ctx context.Context, args ...interface{}) *Cmd |
| 32 | |
| 33 | // Process queues the cmd for later execution. |
| 34 | Process(ctx context.Context, cmd Cmder) error |
no outgoing calls