9951 explained code solutions for 126 technologies


predisHow do I install the PHP Redis module?


The PHP Redis module provides an API for communicating with the Redis key-value store. To install the module, you need to have Redis installed and configured first.

Once Redis is installed, you can install the PHP Redis module with PECL. To install with PECL, run the following command in your terminal:

pecl install redis

The command will install the Redis module and add it to your php.ini file. You can then restart your web server to enable the module.

Once the module is enabled, you can use it in your PHP code. For example, to connect to Redis and set a key-value pair, you can use the following code:

<?php
$redis = new Redis();
$redis->connect('127.0.0.1', 6379);
$redis->set('key', 'value');

The code will connect to Redis and set the key key with the value value.

For more information, you can refer to the PHP Redis documentation.

Edit this code on GitHub