php-redis-client
php-redis-client copied to clipboard
RedisClient is a fast, fully-functional and user-friendly client for Redis, optimized for performance. RedisClient supports the latest versions of Redis starting from 2.6 to 6.0
Hi Fred, Thanks a lot. Yep, unfortunately, I have not time anymore for free maintenance open source project. Sorry. Please feel free to use another libraries for using redis. Regards,...
`Deprecated: Optional parameter $after declared before required parameter $value is implicitly treated as a required parameter in C:\wamp\www\vendor\cheprasov\php-redis-client\src\RedisClient\Command\Traits\Version2x6\ListsCommandsTrait.php on line 94 ` `public function linsert($key, $after = true, $pivot, $value)...
**Required parameter $pivot follows optional parameter $after** [/vendor/cheprasov/php-redis-client/src/RedisClient/Command/Traits/Version2x6/ListsCommandsTrait.php on line 94](https://github.com/cheprasov/php-redis-client/blob/master/src/RedisClient/Command/Traits/Version2x6/ListsCommandsTrait.php) see: [https://php.watch/versions/8.0/deprecate-required-param-after-optional](https://php.watch/versions/8.0/deprecate-required-param-after-optional) ` public function linsert($key, $after = true, $pivot, $value) { return $this->returnCommand(['LINSERT'], $key, [$key, $after ? 'AFTER'...
This is more just a quick fix to resolve issue #81. Really, $after should be at the end of the argument list (as $pivot and $value should always have arguments)...
I'm just wondering if you're aware of any downsides to enabling `STREAM_CLIENT_PERSISTENT` for this lib, for a php-fpm or mod_php app? I don't see it recommended in the README, but...
Extending predis pipeline, I was able to simultanously send the same command to multiple Redis instances and wait for the responses and process them in PHP to form the final...
Dear Alex, Great job on the redis client! Today I was connecting to RediSearch and I think I might have found a small issue. For a case such as this...