redis.config.php 243 B

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. ];