mirror of
https://github.com/predis/predis.git
synced 2026-08-28 11:09:49 +00:00
New command: HVALS (Redis v2.0-dev).
This commit is contained in:
@@ -1236,6 +1236,8 @@ class RedisServer_vNext extends RedisServer_v1_2 {
|
||||
'hashDelete' => '\Predis\Commands\HashDelete',
|
||||
'hkeys' => '\Predis\Commands\HashKeys',
|
||||
'hashKeys' => '\Predis\Commands\HashKeys',
|
||||
'hvals' => '\Predis\Commands\HashValues',
|
||||
'hashValues' => '\Predis\Commands\HashValues',
|
||||
));
|
||||
}
|
||||
}
|
||||
@@ -1762,6 +1764,10 @@ class HashKeys extends \Predis\InlineCommand {
|
||||
public function getCommandId() { return 'HKEYS'; }
|
||||
}
|
||||
|
||||
class HashValues extends \Predis\InlineCommand {
|
||||
public function getCommandId() { return 'HVALS'; }
|
||||
}
|
||||
|
||||
/* multiple databases handling commands */
|
||||
class SelectDatabase extends \Predis\InlineCommand {
|
||||
public function canBeHashed() { return false; }
|
||||
|
||||
Reference in New Issue
Block a user