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