Redis and Php-Redis with drupal 9 on Linux | Drupal 8

Redis and Php-Redis with drupal 9 on Linux

Submitted by editor on Thu, 11/26/2020 - 10:55
Question

How to install and configure Redis / Php-Redis with drupal 8/9 on debian based Linux

Install Redis

sudo apt-get update && sudo apt-get upgrade
sudo apt install redis-server
sudo apt install php-redis

Check

sudo systemctl status redis-server
redis-cli ping

Drupal 9 configuration

Add following to the settings.php

// REDIS default configurations.
$settings['redis.connection']['interface'] = 'PhpRedis';
$settings['redis.connection']['host']      = '127.0.0.1';  // Your Redis instance hostname.
$settings['cache']['default'] = 'cache.backend.redis';
$conf['redis_cache_socket'] = '/tmp/redis.sock';

Add new comment

Plain text

  • No HTML tags allowed.
  • Lines and paragraphs break automatically.
  • Web page addresses and email addresses turn into links automatically.