Quick & Dirty Redis Setup

This commit is contained in:
WilliamMiceli
2019-02-02 13:59:47 -05:00
parent 25c43b9351
commit 8f3093e5ec
2 changed files with 14 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
<?php
$CONFIG = array (
'memcache.locking' => '\OC\Memcache\Redis',
'redis' => array(
'host' => 'redis',
'port' => 6379,
),
);