You've already forked node-redis
mirror of
https://github.com/redis/node-redis.git
synced 2025-08-06 02:15:48 +03:00
Added HVALS command
This commit is contained in:
@@ -1,6 +1,10 @@
|
|||||||
Changelog
|
Changelog
|
||||||
=========
|
=========
|
||||||
|
|
||||||
|
## v0.5.10 - April 6, 2011
|
||||||
|
|
||||||
|
Added HVALS
|
||||||
|
|
||||||
## v0.5.9 - March 14, 2011
|
## v0.5.9 - March 14, 2011
|
||||||
|
|
||||||
Fix bug with empty Array arguments - Andy Ray
|
Fix bug with empty Array arguments - Andy Ray
|
||||||
|
2
index.js
2
index.js
@@ -580,7 +580,7 @@ function Multi(client, args) {
|
|||||||
"zadd", "zincrby", "zrem", "zremrangebyscore", "zremrangebyrank", "zunionstore", "zinterstore", "zrange", "zrangebyscore", "zrevrangebyscore",
|
"zadd", "zincrby", "zrem", "zremrangebyscore", "zremrangebyrank", "zunionstore", "zinterstore", "zrange", "zrangebyscore", "zrevrangebyscore",
|
||||||
"zcount", "zrevrange", "zcard", "zscore", "zrank", "zrevrank",
|
"zcount", "zrevrange", "zcard", "zscore", "zrank", "zrevrank",
|
||||||
// hash commands
|
// hash commands
|
||||||
"hset", "hsetnx", "hget", "hmget", "hincrby", "hdel", "hlen", "hkeys", "hgetall", "hexists", "incrby", "decrby",
|
"hset", "hsetnx", "hget", "hmget", "hincrby", "hdel", "hlen", "hkeys", "hvals", "hgetall", "hexists", "incrby", "decrby",
|
||||||
//bit commands
|
//bit commands
|
||||||
"getbit", "setbit", "getrange", "setrange",
|
"getbit", "setbit", "getrange", "setrange",
|
||||||
// misc
|
// misc
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
{ "name" : "redis",
|
{ "name" : "redis",
|
||||||
"version" : "0.5.9",
|
"version" : "0.5.10",
|
||||||
"description" : "Redis client library",
|
"description" : "Redis client library",
|
||||||
"author": "Matt Ranney <mjr@ranney.com>",
|
"author": "Matt Ranney <mjr@ranney.com>",
|
||||||
"contributors": [
|
"contributors": [
|
||||||
|
Reference in New Issue
Block a user