By editor, 26 November, 2020 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'; Tags Drupal 8 Settings Drupal 9 Cache Memcache - Install memcached on linux and Drupal. Drupal 8 Cache API Comments You must have JavaScript enabled to use this form. Your name Subject Comment About text formats Plain text No HTML tags allowed. Lines and paragraphs break automatically. Web page addresses and email addresses turn into links automatically.
Comments