(ctx context.Context, args ...interface{})
| 445 | } |
| 446 | |
| 447 | func (c cmdable) Do(ctx context.Context, args ...interface{}) *Cmd { |
| 448 | cmd := NewCmd(ctx, args...) |
| 449 | _ = c(ctx, cmd) |
| 450 | return cmd |
| 451 | } |
| 452 | |
| 453 | // DoRaw executes a command and returns the raw RESP protocol bytes without parsing. |
| 454 | func (c cmdable) DoRaw(ctx context.Context, args ...interface{}) *RawCmd { |