From b85c96c80e487ce603004d3ba14473c7f4fa19d4 Mon Sep 17 00:00:00 2001 From: Alexander Demidov Date: Thu, 3 Jul 2014 15:59:00 +0400 Subject: [PATCH] redis-doc hset. hget --- Redis/redis.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Redis/redis.php b/Redis/redis.php index d011ef2..1a09a29 100644 --- a/Redis/redis.php +++ b/Redis/redis.php @@ -62,6 +62,8 @@ * @method int rPush() rPush(string $key, string $value) Adds the string value to the tail (right) of the list. Creates the list if the key didn't exist. If the key exists and is not a list, FALSE is returned. * @method array lTrim() lTrim(string $key, int $start, int $stop) Trims an existing list so that it will contain only a specified range of elements. * @method array sInter + * @method bool hSet() hSet(string $key, string $hashKey, string $value) Adds a value to the hash stored at key. If this value is already in the hash, FALSE is returned. + * @method bool hGet() hGet(string $key, string $hashKey) Gets a value from the hash stored at key. If the hash table doesn't exist, or the key doesn't exist, FALSE is returned. */ class Redis {