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:
authorNicolas Favre-Felix <n.favrefelix@gmail.com>2010-12-15 18:10:31 +0300
committerNicolas Favre-Felix <n.favrefelix@gmail.com>2010-12-15 18:10:31 +0300
commit7c2478629d43a3482dfa492d5f4fd8c5dffd481c (patch)
tree812dcfdd3df216e4760122ae7d892068a5e5b4dd /php_redis.h
parent8287e8d3147ce3cd99414714a2884f836419a59c (diff)
parent0267ad8c63bbb114e8b0a8316627be4339794be0 (diff)
Merge branch 'master' into serializer
Diffstat (limited to 'php_redis.h')
-rwxr-xr-xphp_redis.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/php_redis.h b/php_redis.h
index 60e4f585..532b03cd 100755
--- a/php_redis.h
+++ b/php_redis.h
@@ -25,6 +25,7 @@
PHP_METHOD(Redis, __construct);
PHP_METHOD(Redis, connect);
+PHP_METHOD(Redis, pconnect);
PHP_METHOD(Redis, close);
PHP_METHOD(Redis, ping);
PHP_METHOD(Redis, get);
@@ -159,6 +160,7 @@ PHP_RINIT_FUNCTION(redis);
PHP_RSHUTDOWN_FUNCTION(redis);
PHP_MINFO_FUNCTION(redis);
+PHPAPI int redis_connect(INTERNAL_FUNCTION_PARAMETERS, int persistent);
PHPAPI void redis_atomic_increment(INTERNAL_FUNCTION_PARAMETERS, char *keyword, int count);
PHPAPI int generic_multiple_args_cmd(INTERNAL_FUNCTION_PARAMETERS, char *keyword, int keyword_len,
int min_argc, RedisSock **redis_sock, int has_timeout);