From 648254eb22fb390c55d07cb9a90069fa9fd0b416 Mon Sep 17 00:00:00 2001 From: Jacob Brown Date: Tue, 15 Oct 2024 13:13:47 -0500 Subject: [PATCH] Updating Documentation for Credis_Client --- README.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.markdown b/README.markdown index 92c6011..5413d32 100644 --- a/README.markdown +++ b/README.markdown @@ -69,7 +69,7 @@ $particles = $redis->lrange('particles', 0, -1); ## Clustering your servers -Credis also includes a way for developers to fully utilize the [scalability of Redis cluster](https://redis.io/docs/latest/operate/oss_and_stack/management/scaling/) by using the RedisCluster class from [the Redis extension for PHP](https://github.com/phpredis/phpredis). This also works on [AWS ElastiCatch clusters](https://docs.aws.amazon.com/AmazonElastiCache/latest/dg/Clusters.html). +Credis also includes a way for developers to fully utilize the [scalability of Redis cluster](https://redis.io/docs/latest/operate/oss_and_stack/management/scaling/) by using Credis_Client which is an adapter for the RedisCluster class from [the Redis extension for PHP](https://github.com/phpredis/phpredis). This also works on [AWS ElastiCatch clusters](https://docs.aws.amazon.com/AmazonElastiCache/latest/dg/Clusters.html). This feature requires the PHP extension for its functionality. Here is an example how to set up a cluster: ### Basic clustering example