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@github.com>2012-05-04 23:12:03 +0400
committermichael-grunder <michael-grunder@github.com>2012-05-04 23:12:03 +0400
commitd59b53b6b5779113ef8bf4d6f951bddd75e7f99d (patch)
tree9a8e68ef3c88dc4ad03e31389311db70b46b95a8 /php_redis.h
parent3160a64a17fc8824fcdbbcc5d17b8c18bc77ff52 (diff)
Implemented INCRBYFLOAT and HINCRBYFLOAT
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 82ed17f5..6392c375 100755
--- a/php_redis.h
+++ b/php_redis.h
@@ -44,6 +44,7 @@ PHP_METHOD(Redis, exists);
PHP_METHOD(Redis, delete);
PHP_METHOD(Redis, incr);
PHP_METHOD(Redis, incrBy);
+PHP_METHOD(Redis, incrByFloat);
PHP_METHOD(Redis, decr);
PHP_METHOD(Redis, decrBy);
PHP_METHOD(Redis, type);
@@ -141,6 +142,7 @@ PHP_METHOD(Redis, hVals);
PHP_METHOD(Redis, hGetAll);
PHP_METHOD(Redis, hExists);
PHP_METHOD(Redis, hIncrBy);
+PHP_METHOD(Redis, hIncrByFloat);
PHP_METHOD(Redis, hMset);
PHP_METHOD(Redis, hMget);