DoRawWriteTo executes a command and streams raw RESP bytes directly to w without intermediate allocations.
(ctx context.Context, w io.Writer, args ...interface{})
| 459 | |
| 460 | // DoRawWriteTo executes a command and streams raw RESP bytes directly to w without intermediate allocations. |
| 461 | func (c cmdable) DoRawWriteTo(ctx context.Context, w io.Writer, args ...interface{}) *RawWriteToCmd { |
| 462 | cmd := NewRawWriteToCmd(ctx, w, args...) |
| 463 | _ = c(ctx, cmd) |
| 464 | return cmd |
| 465 | } |
| 466 | |
| 467 | // Quit closes the connection. |
| 468 | // |
no test coverage detected