June 2017
Intermediate to advanced
536 pages
9h 49m
English
Before we start querying, we need to ensure that we have the PHP CLI and phpredis driver extension installed:
sudo apt-get -y install php7.0-devsudo apt-get -y install unzipwget https://github.com/phpredis/phpredis/archive/php7.zip -O phpredis.zipunzip phpredis.zip cd phpredis-php7/phpize./configuremakesudo make installecho extension=redis.so >> /etc/php/7.0/cli/php.ini
Upon successful execution of these commands, we can confirm that the phpredis driver extension is installed as follows:

Read now
Unlock full access