Skip to content

Releases: okdewit/redis-datastructures

Change Laravel dependency to include newer versions

27 Mar 11:34
79c229f
Compare
Choose a tag to compare

Add support for Laravel 10.0

22 May 10:32
a43490f
Compare
Choose a tag to compare
Merge pull request #2 from PrinsFrank/laravel-10-support

Add support for Laravel 10

Add support for Laravel 9.0

23 Jan 14:35
35f0307
Compare
Choose a tag to compare

Add support for Laravel 9.0

Added groupBy method to IndexedCache

19 Apr 13:14
Compare
Choose a tag to compare

Example:

$colorcache = new ColorCache();

$collection = new ColorCollection([
    new Color(1, 'green'),
    new Color(2, 'blue'),
    new Color(3, 'blue'),
    new Color(4, 'green')
]);

$colorcache->warm($collection);

$grouped = $colorcache->groupBy('color');

$grouped will be a LazyCollection with Collections of grouped items inside.

Fixes & more tests

30 Apr 09:41
Compare
Choose a tag to compare
1.0.2

fix for all() method

1.0.1

29 Apr 18:46
31cd835
Compare
Choose a tag to compare
Update IndexedCache.php

Initial release

29 Apr 15:28
Compare
Choose a tag to compare
1.0.0

phpredis fix