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-06-10 02:27:15 +0400
committermichael-grunder <michael.grunder@gmail.com>2015-05-06 00:43:05 +0300
commit4865e6eb0a4f60038f3fddb6d1df7f43247c221d (patch)
treee9b0028d6bf90a8a504743c3599bb93dc740a580 /redis_commands.h
parent0fa7f0b993b0073db4f5b62c711447055563b973 (diff)
HDEL command
Implemented HDEL command for both Redis and RedisCluster objects
Diffstat (limited to 'redis_commands.h')
-rw-r--r--redis_commands.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/redis_commands.h b/redis_commands.h
index 21e63498..1d1ba28b 100644
--- a/redis_commands.h
+++ b/redis_commands.h
@@ -135,6 +135,9 @@ int redis_zincrby_cmd(INTERNAL_FUNCTION_PARAMETERS, RedisSock *redis_sock,
int redis_sort_cmd(INTERNAL_FUNCTION_PARAMETERS, RedisSock *redis_sock,
int *using_store, char **cmd, int *cmd_len, short *slot, void **ctx);
+int redis_hdel_cmd(INTERNAL_FUNCTION_PARAMETERS, RedisSock *redis_sock,
+ char **cmd, int *cmd_len, short *slot, void **ctx);
+
#endif
/* vim: set tabstop=4 softtabstops=4 noexpandtab shiftwidth=4: */