mirror of
https://github.com/predis/predis.git
synced 2026-08-22 18:10:56 +00:00
14 lines
351 B
PHP
14 lines
351 B
PHP
<?php
|
|
|
|
namespace Predis\Commands;
|
|
|
|
use Predis\Command;
|
|
|
|
class BackgroundRewriteAppendOnlyFile extends Command {
|
|
public function canBeHashed() { return false; }
|
|
public function getCommandId() { return 'BGREWRITEAOF'; }
|
|
public function parseResponse($data) {
|
|
return $data == 'Background append only file rewriting started';
|
|
}
|
|
}
|