yii2-redis icon indicating copy to clipboard operation
yii2-redis copied to clipboard

Yii 2 Redis extension.

Results 38 yii2-redis issues
Sort by recently updated
recently updated
newest added

### What steps will reproduce the problem? The save() method is non-atomic, various problems can occur in highly concurrent operations. and it's inefficient. ### What's expected? Use the Lua script...

type:enhancement
status:ready for adoption

this yii2-redis has no pipeline function?

type:enhancement
status:ready for adoption

At the moment, we have no way to use pub/sub feature of redis via this lib. Please implement to support pub/sub.

type:feature

Is that possible to add session locking functionality to redis sessions? That has been added 1 year ago to phpredis: https://github.com/phpredis/phpredis/pull/1181 Probably, this easiest wy to do that is to...

type:enhancement
status:ready for adoption

Hi, i found a bug. Example: ``` php class Bet extends \yii\redis\ActiveRecord { public static function primaryKey() { return [ 'game_id', //int 'stage_id', //string 'user_id' //int ]; } // some...

type:bug

This issue has originally been reported by @phuczeero at https://github.com/yiisoft/yii2/issues/12961. Moved here by @samdark. ----- ### What steps will reproduce the problem? **Token.php** ``` namespace app\models; class Token extends \yii\redis\ActiveRecord...

type:bug
ext:redis
feature:rest
status:to be verified

I suggest yii2-redis\src\Connection changing `Private function parseResponse($command)` to `Public function parseResponse($command)`.

type:enhancement
status:to be verified
help wanted

for example: 'redis' => [ 'class' => 'yii\redis\Connection', 'servers'=>[ ['hostname' => '127.0.0.1','port'=> 6379], ['hostname' => '127.0.0.1','port'=> 6380], ['hostname' => '127.0.0.1','port'=> 6381], ] ],

type:docs

Do we want to add a new connection class, that will use [predis](https://github.com/nrk/predis) (as e.g. laravel does) to support such features as replication and sentinel support? Or it could be...

type:feature