|
@@ -1234,6 +1234,8 @@ class RedisServer_vNext extends RedisServer_v1_2 {
|
|
|
'hashGet' => '\Predis\Commands\HashGet',
|
|
|
'hdel' => '\Predis\Commands\HashDelete',
|
|
|
'hashDelete' => '\Predis\Commands\HashDelete',
|
|
|
+ 'hlen' => '\Predis\Commands\HashLength',
|
|
|
+ 'hashLength' => '\Predis\Commands\HashLength',
|
|
|
'hkeys' => '\Predis\Commands\HashKeys',
|
|
|
'hashKeys' => '\Predis\Commands\HashKeys',
|
|
|
'hvals' => '\Predis\Commands\HashValues',
|
|
@@ -1762,6 +1764,10 @@ class HashDelete extends \Predis\BulkCommand {
|
|
|
public function getCommandId() { return 'HDEL'; }
|
|
|
}
|
|
|
|
|
|
+class HashLength extends \Predis\InlineCommand {
|
|
|
+ public function getCommandId() { return 'HLEN'; }
|
|
|
+}
|
|
|
+
|
|
|
class HashKeys extends \Predis\InlineCommand {
|
|
|
public function getCommandId() { return 'HKEYS'; }
|
|
|
}
|