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:
authorPavlo Yatsukhnenko <yatsukhnenko@gmail.com>2021-04-08 08:53:36 +0300
committerPavlo Yatsukhnenko <yatsukhnenko@gmail.com>2021-04-10 21:26:29 +0300
commitb0b9dd78ef7c15af936144c1b17df1a9273d72ab (patch)
tree2632efff912ca0add7b184f1e74502f98e63eb35 /redis_cluster.c
parent8eed7c7d9c87a205c30359a6d918fc1a2170c58b (diff)
[WIP] Issue #1894
Add GET option to SET command
Diffstat (limited to 'redis_cluster.c')
-rw-r--r--redis_cluster.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/redis_cluster.c b/redis_cluster.c
index ec72408a..402c23b7 100644
--- a/redis_cluster.c
+++ b/redis_cluster.c
@@ -520,7 +520,7 @@ PHP_METHOD(RedisCluster, get) {
/* {{{ proto bool RedisCluster::set(string key, string value) */
PHP_METHOD(RedisCluster, set) {
- CLUSTER_PROCESS_CMD(set, cluster_bool_resp, 0);
+ CLUSTER_PROCESS_CMD(set, cluster_set_resp, 0);
}
/* }}} */