From e72342c67cba5192ed473fa8b472dafc32fa3b6f Mon Sep 17 00:00:00 2001 From: Tobias Nyholm Date: Wed, 9 Oct 2024 18:25:23 +0200 Subject: [PATCH] Add redis extension There are two ways to use Redis with PHP. One is with a library (written in PHP) and the other one is with a PHP extension (written in C). The extension is faster but the library is easier to install, especially if you are on shared hosts. --- content/develop/connect/clients/_index.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/content/develop/connect/clients/_index.md b/content/develop/connect/clients/_index.md index 1552643268..23ecb64edc 100644 --- a/content/develop/connect/clients/_index.md +++ b/content/develop/connect/clients/_index.md @@ -39,7 +39,8 @@ Redis does not support directly: | Language | Client name | Github | Docs | | :-- | :-- | :-- | :-- | | C | hiredis | https://github.com/redis/hiredis | https://github.com/redis/hiredis | -| [PHP](https://www.php.net/) | predis | https://github.com/predis/predis | https://github.com/predis/predis/wiki | +| [PHP](https://www.php.net/) | redis extension | https://github.com/phpredis/phpredis | https://github.com/phpredis/phpredis/blob/develop/README.md | +| [PHP](https://www.php.net/) | predis library | https://github.com/predis/predis | https://github.com/predis/predis/wiki | | [Ruby](https://www.ruby-lang.org/en/) | redis-rb | https://github.com/redis/redis-rb | https://rubydoc.info/gems/redis | | [Rust](https://www.rust-lang.org/) | redis-rs | https://github.com/redis-rs/redis-rs | https://docs.rs/redis/latest/redis/ | @@ -52,4 +53,4 @@ To interact with a Redis server without writing code, use the [Redis CLI]({{< relref "/develop/connect/cli" >}}) and [Redis Insight]({{< relref "/develop/connect/insight" >}}) tools. -## Client library guides \ No newline at end of file +## Client library guides