Browse Source

redis-doc hset. hget

namespace
Alexander Demidov 10 years ago
parent
commit
b85c96c80e
  1. 2
      Redis/redis.php

2
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
{

Loading…
Cancel
Save