------------------------------------------------------------------------------
(ctx context.Context)
| 474 | //------------------------------------------------------------------------------ |
| 475 | |
| 476 | func (c cmdable) BgRewriteAOF(ctx context.Context) *StatusCmd { |
| 477 | cmd := NewStatusCmd(ctx, "bgrewriteaof") |
| 478 | _ = c(ctx, cmd) |
| 479 | return cmd |
| 480 | } |
| 481 | |
| 482 | func (c cmdable) BgSave(ctx context.Context) *StatusCmd { |
| 483 | cmd := NewStatusCmd(ctx, "bgsave") |
nothing calls this directly
no test coverage detected