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-03-03 18:23:38 +0400
committermichael-grunder <michael.grunder@gmail.com>2014-03-03 18:23:38 +0400
commite74ffe036643265b18e864a9a4139cdb3d072d65 (patch)
treeceaf4e25dac1bce1f4382447be7d0ee358d6a812 /php_redis.h
parent8f006cba2d20479a3b15741fc1a0c801aec4c246 (diff)
Implemented BITPOS command
This commit introduces the new BITPOS redis command http://redis.io/commands/bitpos
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 176ba2b6..12eb7462 100644
--- a/php_redis.h
+++ b/php_redis.h
@@ -129,6 +129,7 @@ PHP_METHOD(Redis, slaveof);
PHP_METHOD(Redis, object);
PHP_METHOD(Redis, bitop);
PHP_METHOD(Redis, bitcount);
+PHP_METHOD(Redis, bitpos);
PHP_METHOD(Redis, eval);
PHP_METHOD(Redis, evalsha);