Releases: okdewit/redis-datastructures
Releases · okdewit/redis-datastructures
Change Laravel dependency to include newer versions
1.2.2 Update composer.json
Add support for Laravel 10.0
Add support for Laravel 9.0
Add support for Laravel 9.0
Added groupBy method to IndexedCache
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
1.0.2 fix for all() method
1.0.1
Initial release
1.0.0 phpredis fix