forked from ziogas/PHP-Redis-implementation
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ee2c7f8
commit 1730d0e
Showing
1 changed file
with
10 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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.** | ||
|
||
|
@@ -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 - [email protected] | ||
thisispiers | ||
|
||
- Arminas Zukauskas - [email protected] | ||
- thisispiers | ||
|
||
*Based on http://redis.io/topics/protocol* | ||
|
||
|