diff --git a/README.md b/README.md index ee273f3..a1b3803 100644 --- a/README.md +++ b/README.md @@ -1,16 +1,16 @@ PHP Redis implementation ============== -Yet another php redis implementation. +Yet another PHP redis implementation. Raw wrapper for real [Redis] fans. Main advantages: -* Doesn't require any dependencies as all the communication goes via tcp socket. -* All commands are passed as is, so you have all the freedom to play with redis just like in redis-cli. -* It won't get deprecated or obsolete for the same reason. You write raw commands by yourself. -* Doesn't matter which redis version you have. +* Doesn't require any dependencies as all the communication goes via TCP/Unix socket. +* All commands are passed as is, so you have all the freedom to play with Redis just like in redis-cli. +* It won't get deprecated or obsolete. You write raw commands by yourself. +* Doesn't matter which Redis version you have. * Supports chainable methods. Write multiple commands and send everything at once. * Custom error function to handle errors. -* Dead Simple and lightweight, you're welcome to read all the 300+ lines of redis.php -* Forces you to actually learn and understand redis data structures and commands. +* Simple and lightweight. All ~600 lines of code are straight forward. +* Forces you to actually learn and understand Redis data structures and commands. **This fork makes it compatible with Composer and adds a minimal library for PHP 8 type checking.** @@ -19,9 +19,7 @@ You can checkout latest version with: $ git clone git://github.com/thisispiers/PHP-Redis-implementation - ## Install -To install PHP redis: ``` composer require thisispiers/php-redis-implementation @@ -36,8 +34,9 @@ composer require thisispiers/php-redis-implementation 5. Submit a pull request ## Author -Arminas Zukauskas - arminas@ini.lt -thisispiers + +- Arminas Zukauskas - arminas@ini.lt +- thisispiers *Based on http://redis.io/topics/protocol*