|
@@ -6,6 +6,10 @@ class ServerVersionNext extends ServerVersion22 {
|
|
public function getVersion() { return '2.4'; }
|
|
public function getVersion() { return '2.4'; }
|
|
public function getSupportedCommands() {
|
|
public function getSupportedCommands() {
|
|
return array_merge(parent::getSupportedCommands(), array(
|
|
return array_merge(parent::getSupportedCommands(), array(
|
|
|
|
+ /* commands operating on lists */
|
|
|
|
+ 'rpush' => '\Predis\Commands\ListPushTailV24x',
|
|
|
|
+ 'lpush' => '\Predis\Commands\ListPushHeadV24x',
|
|
|
|
+
|
|
/* remote server control commands */
|
|
/* remote server control commands */
|
|
'info' => '\Predis\Commands\InfoV24x',
|
|
'info' => '\Predis\Commands\InfoV24x',
|
|
));
|
|
));
|