File tree Expand file tree Collapse file tree 1 file changed +13
-0
lines changed Expand file tree Collapse file tree 1 file changed +13
-0
lines changed Original file line number Diff line number Diff line change @@ -3176,6 +3176,19 @@ public function pfCount( $key ) {}
3176
3176
* $redis->pfCount('key3'); // int(3)
3177
3177
*/
3178
3178
public function pfMerge ( $ destkey , array $ sourcekeys ) {}
3179
+
3180
+ /**
3181
+ * Send arbitrary things to the redis server.
3182
+ * @param string $command Required command to send to the server.
3183
+ * @param mixed,... $arguments Optional variable amount of arguments to send to the server.
3184
+ * @return mixed
3185
+ * @example
3186
+ * <pre>
3187
+ * $redis->rawCommand('SET', 'key', 'value'); // bool(true)
3188
+ * $redis->rawCommand('GET", 'key'); // string(5) "value"
3189
+ * </pre>
3190
+ */
3191
+ public function rawCommand ( $ command , $ arguments ) {}
3179
3192
}
3180
3193
3181
3194
class RedisException extends Exception {}
You can’t perform that action at this time.
0 commit comments