Skip to content

Commit e72342c

Browse files
authored
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.
1 parent 15b16e3 commit e72342c

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

content/develop/connect/clients/_index.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,8 @@ Redis does not support directly:
3939
| Language | Client name | Github | Docs |
4040
| :-- | :-- | :-- | :-- |
4141
| C | hiredis | https://github.com/redis/hiredis | https://github.com/redis/hiredis |
42-
| [PHP](https://www.php.net/) | predis | https://github.com/predis/predis | https://github.com/predis/predis/wiki |
42+
| [PHP](https://www.php.net/) | redis extension | https://github.com/phpredis/phpredis | https://github.com/phpredis/phpredis/blob/develop/README.md |
43+
| [PHP](https://www.php.net/) | predis library | https://github.com/predis/predis | https://github.com/predis/predis/wiki |
4344
| [Ruby](https://www.ruby-lang.org/en/) | redis-rb | https://github.com/redis/redis-rb | https://rubydoc.info/gems/redis |
4445
| [Rust](https://www.rust-lang.org/) | redis-rs | https://github.com/redis-rs/redis-rs | https://docs.rs/redis/latest/redis/ |
4546

@@ -52,4 +53,4 @@ To interact with a Redis server without writing code, use the
5253
[Redis CLI]({{< relref "/develop/connect/cli" >}}) and
5354
[Redis Insight]({{< relref "/develop/connect/insight" >}}) tools.
5455

55-
## Client library guides
56+
## Client library guides

0 commit comments

Comments
 (0)