/www/redis/Rediska/Command/GetLastSaveTime.php

http://github.com/isaacsu/twich · PHP · 44 lines · 27 code · 6 blank · 11 comment · 2 complexity · 79065a178263909b36c946d002ecb81b MD5 · raw file

  1. <?php
  2. /**
  3. * Return the UNIX time stamp of the last successfully saving of the dataset on disk
  4. *
  5. * @return array|integer
  6. *
  7. * @author Ivan Shumkov
  8. * @package Rediska
  9. * @version 0.4.2
  10. * @link http://rediska.geometria-lab.net
  11. * @licence http://www.opensource.org/licenses/bsd-license.php
  12. */
  13. class Rediska_Command_GetLastSaveTime extends Rediska_Command_Abstract
  14. {
  15. protected $_connections = array();
  16. protected function _create()
  17. {
  18. $command = "LASTSAVE";
  19. foreach($this->_rediska->getConnections() as $connection) {
  20. $this->_connections[] = $connection->getAlias();
  21. $this->_addCommandByConnection($connection, $command);
  22. }
  23. }
  24. protected function _parseResponses($responses)
  25. {
  26. $timestamps = array();
  27. $count = 0;
  28. foreach($this->_connections as $connection) {
  29. $timestamps[$connection] = $responses[$count];
  30. $count++;
  31. }
  32. if (count($timestamps) == 1) {
  33. $timestamps = array_values($timestamps);
  34. $timestamps = $timestamps[0];
  35. }
  36. return $timestamps;
  37. }
  38. }