From a311cc4ec3cecdbaf83ba66985efa82137e37cc0 Mon Sep 17 00:00:00 2001 From: Michael Grunder Date: Wed, 24 Jun 2020 17:00:01 -0700 Subject: Support for Redis 6 ACLs (#1791) Add support for Redis 6 ACLs in the `Redis`, `RedisCluster`, and `RedisArray` classes. On a related note, it adds a mechanism for users to customize how we generate persistent connection IDs such that they can be grouped in different ways depending on the specific use case required (e.g. it would allow connections to be grouped by username, or by user-defined persistent_id, or both). --- redis_cluster.h | 1 + 1 file changed, 1 insertion(+) (limited to 'redis_cluster.h') diff --git a/redis_cluster.h b/redis_cluster.h index 379d034c..c6959fde 100644 --- a/redis_cluster.h +++ b/redis_cluster.h @@ -99,6 +99,7 @@ void free_cluster_context(zend_object *object); /* RedisCluster method implementation */ PHP_METHOD(RedisCluster, __construct); +PHP_METHOD(RedisCluster, acl); PHP_METHOD(RedisCluster, close); PHP_METHOD(RedisCluster, get); PHP_METHOD(RedisCluster, set); -- cgit v1.2.3