Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpredis/phpredis.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Favre-Felix <n.favrefelix@gmail.com>2010-09-13 00:46:31 +0400
committerNicolas Favre-Felix <n.favrefelix@gmail.com>2010-09-13 00:46:31 +0400
commit46d5baa8efc5f08390cc7bbf17d77ef63d653f2b (patch)
treea836816f25ac716d07ba80a2d9d8492cec555040 /README.markdown
parent4647f0d149d5a913f7b9c73c51e564ad6cca7eb5 (diff)
Fixed HMSET with NULL values, added doc & tests.
Diffstat (limited to 'README.markdown')
-rw-r--r--README.markdown2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.markdown b/README.markdown
index 979c2c21..9221c535 100644
--- a/README.markdown
+++ b/README.markdown
@@ -1683,7 +1683,7 @@ $redis->hIncrBy('h', 'x', 1); /* h[x] ← 2 + 1. Returns 3 */
## hMset
##### Description
-Fills in a whole hash.
+Fills in a whole hash. Non-string values are converted to string, using the standard `(string)` cast. NULL values are stored as empty strings.
##### Parameters
*key*
*members*: key → value array