Files
predis/lib/Predis/Commands/BackgroundRewriteAppendOnlyFile.php
T

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';
}
}