Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
thisispiers committed Aug 26, 2022
1 parent ee2c7f8 commit 1730d0e
Showing 1 changed file with 10 additions and 11 deletions.
21 changes: 10 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
@@ -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.**

Expand All @@ -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
Expand All @@ -36,8 +34,9 @@ composer require thisispiers/php-redis-implementation
5. Submit a pull request

## Author
Arminas Zukauskas - [email protected]
thisispiers

- Arminas Zukauskas - [email protected]
- thisispiers

*Based on http://redis.io/topics/protocol*

Expand Down

0 comments on commit 1730d0e

Please sign in to comment.