You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

redis.config.php 243B

123456789101112
  1. <?php
  2. $CONFIG = [
  3. 'memcache.local' => '\\OC\\Memcache\\Redis',
  4. 'memcache.distributed' => '\\OC\\Memcache\\Redis',
  5. 'memcache.locking' => '\\OC\\Memcache\\Redis',
  6. 'redis' => [
  7. 'host' => 'cache',
  8. 'port' => 6379,
  9. 'timeout' => 0,
  10. ],
  11. ];