Predis in Laravel – Redis Series Episode 1
Episode 2 – How to use PhpRedis instead of Predis – https://youtu.be/UEpyWEbsrkw
Episode 3 – Storing page view counts in Redis – https://youtu.be/ZMjw5WFPG8c
In this introduction to the Redis Series, I briefly describe what Redis is and explain how to implement it in Laravel with Predis. Predis is a PHP library for Redis that is very easy to install.
However, it is not the most performant library out there for large scale PHP applications because it is written in PHP. PHPRedis is written in C, and can perform better with heavy loads. PHPRedis implementation will be the second episode.
Episode 2: https://www.youtube.com/watch?v=UEpyWEbsrkw
After that, we will walk through practical use cases so that you can get a better idea of what Redis has to offer and whether it can be helpful for your app.
First use case: https://www.youtube.com/watch?v=ZMjw5WFPG8c
source