phpredisphp-7phpredis

How to install redis extension for php 7


Referred this link https://anton.logvinenko.name/en/blog/how-to-install-redis-and-redis-php-client.html

And done following steps

PhpRedis for PHP 7 (Skip it if you have different PHP version)

Install required package

apt-get install php7.0-dev

Download PhpRedis

cd /tmp
wget https://github.com/phpredis/phpredis/archive/php7.zip -O phpredis.zip

But, https://github.com/phpredis/phpredis/archive/php7.zip file not found for installation.


Solution

  • Try to use this url https://github.com/phpredis/phpredis/archive/5.2.2.zip

    wget https://github.com/phpredis/phpredis/archive/5.2.2.zip -O phpredis.zip
    

    Or use this command:

    sudo apt-get install php-redis