class Redis not found

I was trying to cache the frequently used urls in the redis so that the website loads faster.

But when I was trying to implement the redis cache got caught with following error.

class Redis not found

Fix:

Issue was with php7.x-redis not installed and in this case I was using php7.2.

apt install php7.2-redis

Leave a comment