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:
authormichael-grunder <michael.grunder@gmail.com>2014-01-22 02:50:34 +0400
committermichael-grunder <michael.grunder@gmail.com>2014-01-22 02:50:34 +0400
commit48ae8e52f6c37e5fea607ed64959f6e7a6712850 (patch)
tree1ada8698f4339b8a341a53042add83e9901804f7 /php_redis.h
parent1a89ec2ff43c06c6b7d9e1174768c8c51e5efed6 (diff)
Implement PUBSUB command
This commit implements the Redis PUBSUB command, a new command available since Redis 2.8.0 and described here: http://redis.io/commands/pubsub Addresses #427
Diffstat (limited to 'php_redis.h')
-rw-r--r--php_redis.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/php_redis.h b/php_redis.h
index a50c7c18..e05461a1 100644
--- a/php_redis.h
+++ b/php_redis.h
@@ -183,6 +183,7 @@ PHP_METHOD(Redis, setOption);
PHP_METHOD(Redis, config);
PHP_METHOD(Redis, slowlog);
PHP_METHOD(Redis, wait);
+PHP_METHOD(Redis, pubsub);
PHP_METHOD(Redis, client);