Skip to content

Releases: E96/yii2-redis

Get pk from condition if possible

25 Jan 13:41
b8578dd
Compare
Choose a tag to compare
2.1.8

get pk from condition if possible

Refactoring AR Attributes

20 Mar 16:11
Compare
Choose a tag to compare
Merge pull request #5 from E96/refacoring

refactoring working with attributes

2.1.6

03 Feb 10:30
Compare
Choose a tag to compare
change SETNX to SET in cache setValue

2.1.5

11 May 14:11
Compare
Choose a tag to compare
fix check setArgs on insert

2.1.4

14 Apr 22:28
Compare
Choose a tag to compare
fix close connection

add dataTimeout

07 Apr 20:01
Compare
Choose a tag to compare
2.1.3

set dataTimeout

phpredis

07 Apr 17:47
Compare
Choose a tag to compare
Merge pull request #4 from E96/phpredis

Phpredis

PK algorithm change

02 Sep 06:52
Compare
Choose a tag to compare

This release breaks compatibility with older releases.

To migrate to new version you should migrate your pks. Example code:

function fill($keys)
{
    foreach ($keys as $key) {
        yield $key;
        yield 0;
    }
}

$keys = $redis->executeCommand('LRANGE', ['model', 0, -1]);
$keys = iterator_to_array(fill($keys));
$keys = array_unshift($keys, 'model')

$redis->executeCommand('DEL', 'model')
$redis->executeCommand('HMSET', $keys)

2.0.4.4

30 Jul 10:53
Compare
Choose a tag to compare
sepparate read function for perf traces

Publish package

21 Jul 09:37
Compare
Choose a tag to compare
2.0.4.3

update README