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