/www/redis/Rediska/Command/Save.php
http://github.com/isaacsu/twich · PHP · 34 lines · 19 code · 3 blank · 12 comment · 2 complexity · d7f136e690e4db78b6da8ecab9c92f53 MD5 · raw file
- <?php
- /**
- * Synchronously save the DB on disk
- *
- * @param boolean $background Save asynchronously
- * @return boolean
- *
- * @author Ivan Shumkov
- * @package Rediska
- * @version 0.4.2
- * @link http://rediska.geometria-lab.net
- * @licence http://www.opensource.org/licenses/bsd-license.php
- */
- class Rediska_Command_Save extends Rediska_Command_Abstract
- {
- protected function _create($background = false)
- {
- if ($background) {
- $command = "BGSAVE";
- } else {
- $command = "SAVE";
- }
- foreach($this->_rediska->getConnections() as $connection) {
- $this->_addCommandByConnection($connection, $command);
- }
- }
- protected function _parseResponses($responses)
- {
- return true;
- }
- }