@@ -44,7 +44,6 @@ public function __construct($message, $code = 0, $exception = NULL)
4444/**
4545 * Credis_Client, a lightweight Redis PHP standalone client and phpredis wrapper
4646 *
47- * Server/Connection:
4847 * @method Credis_Client pipeline()
4948 * @method Credis_Client multi()
5049 * @method array exec()
@@ -55,7 +54,6 @@ public function __construct($message, $code = 0, $exception = NULL)
5554 * @method array role()
5655 * @method array time()
5756 *
58- * Keys:
5957 * @method int del(string $key)
6058 * @method int exists(string $key)
6159 * @method int expire(string $key, int $seconds)
@@ -68,7 +66,6 @@ public function __construct($message, $code = 0, $exception = NULL)
6866 * @method int ttl(string $key)
6967 * @method string type(string $key)
7068 *
71- * Scalars:
7269 * @method int append(string $key, string $value)
7370 * @method int decr(string $key)
7471 * @method int decrBy(string $key, int $decrement)
@@ -88,7 +85,6 @@ public function __construct($message, $code = 0, $exception = NULL)
8885 * @method int setRange(string $key, int $offset, int $value)
8986 * @method int strLen(string $key)
9087 *
91- * Sets:
9288 * @method int sAdd(string $key, mixed $value, string $valueN = null)
9389 * @method int sRem(string $key, mixed $value, string $valueN = null)
9490 * @method array sMembers(string $key)
@@ -104,7 +100,6 @@ public function __construct($message, $code = 0, $exception = NULL)
104100 * @method int sInterStore(string $dest, string $key1, string $key2 = null)
105101 * @method int sDiffStore(string $dest, string $key1, string $key2 = null)
106102 *
107- * Hashes:
108103 * @method bool|int hSet(string $key, string $field, string $value)
109104 * @method bool hSetNx(string $key, string $field, string $value)
110105 * @method bool|string hGet(string $key, string $field)
@@ -118,7 +113,6 @@ public function __construct($message, $code = 0, $exception = NULL)
118113 * @method bool hMSet(string $key, array $keysValues)
119114 * @method array hMGet(string $key, array $fields)
120115 *
121- * Lists:
122116 * @method array|null blPop(string $keyN, int $timeout)
123117 * @method array|null brPop(string $keyN, int $timeout)
124118 * @method array|null brPoplPush(string $source, string $destination, int $timeout)
@@ -137,7 +131,6 @@ public function __construct($message, $code = 0, $exception = NULL)
137131 * @method int rPush(string $key, mixed $value, mixed $valueN = null)
138132 * @method int rPushX(string $key, mixed $value)
139133 *
140- * Sorted Sets:
141134 * @method int zCard(string $key)
142135 * @method array zRangeByScore(string $key, mixed $start, mixed $stop, array $args = null)
143136 * @method array zRevRangeByScore(string $key, mixed $start, mixed $stop, array $args = null)
@@ -146,11 +139,9 @@ public function __construct($message, $code = 0, $exception = NULL)
146139 * @method array zRevRange(string $key, mixed $start, mixed $stop, array $args = null)
147140 * TODO
148141 *
149- * Pub/Sub
150142 * @method int publish(string $channel, string $message)
151143 * @method int|array pubsub(string $subCommand, $arg = NULL)
152144 *
153- * Scripting:
154145 * @method string|int script(string $command, string $arg1 = null)
155146 * @method string|int|array|bool eval(string $script, array $keys = NULL, array $args = NULL)
156147 * @method string|int|array|bool evalSha(string $script, array $keys = NULL, array $args = NULL)
0 commit comments