Files
predis/lib/Predis/Commands/ServerBackgroundRewriteAOF.php
T
2011-10-18 15:51:55 +02:00

27 lines
453 B
PHP

<?php
namespace Predis\Commands;
class ServerBackgroundRewriteAOF extends Command
{
public function getId()
{
return 'BGREWRITEAOF';
}
protected function onPrefixKeys(Array $arguments, $prefix)
{
/* NOOP */
}
protected function canBeHashed()
{
return false;
}
public function parseResponse($data)
{
return $data == 'Background append only file rewriting started';
}
}