1
0
mirror of https://github.com/redis/node-redis.git synced 2025-08-07 13:22:56 +03:00

hmset throws/errors out on non-string values. fixes #218

This commit is contained in:
DTrejo
2012-06-04 16:13:56 -07:00
parent 7734fb63b4
commit b60e001fa0
3 changed files with 24 additions and 1 deletions

View File

@@ -277,7 +277,7 @@ Output:
Multiple values in a hash can be set by supplying an object:
client.HMSET(key2, {
"0123456789": "abcdefghij",
"0123456789": "abcdefghij", // NOTE: the key and value must both be strings
"some manner of key": "a type of value"
});