/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
- <?php
- /**
- * Return the UNIX time stamp of the last successfully saving of the dataset on disk
- *
- * @return array|integer
- *
- * @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_GetLastSaveTime extends Rediska_Command_Abstract
- {
- protected $_connections = array();
-
- protected function _create()
- {
- $command = "LASTSAVE";
-
- foreach($this->_rediska->getConnections() as $connection) {
- $this->_connections[] = $connection->getAlias();
- $this->_addCommandByConnection($connection, $command);
- }
- }
- protected function _parseResponses($responses)
- {
- $timestamps = array();
- $count = 0;
- foreach($this->_connections as $connection) {
- $timestamps[$connection] = $responses[$count];
- $count++;
- }
- if (count($timestamps) == 1) {
- $timestamps = array_values($timestamps);
- $timestamps = $timestamps[0];
- }
- return $timestamps;
- }
- }