/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

  1. <?php
  2. /**
  3. * Synchronously save the DB on disk
  4. *
  5. * @param boolean $background Save asynchronously
  6. * @return boolean
  7. *
  8. * @author Ivan Shumkov
  9. * @package Rediska
  10. * @version 0.4.2
  11. * @link http://rediska.geometria-lab.net
  12. * @licence http://www.opensource.org/licenses/bsd-license.php
  13. */
  14. class Rediska_Command_Save extends Rediska_Command_Abstract
  15. {
  16. protected function _create($background = false)
  17. {
  18. if ($background) {
  19. $command = "BGSAVE";
  20. } else {
  21. $command = "SAVE";
  22. }
  23. foreach($this->_rediska->getConnections() as $connection) {
  24. $this->_addCommandByConnection($connection, $command);
  25. }
  26. }
  27. protected function _parseResponses($responses)
  28. {
  29. return true;
  30. }
  31. }