11 lines
211 B
PHP
11 lines
211 B
PHP
<?php
|
|
$CONFIG = array (
|
|
'memcache.local' => '\OC\Memcache\Redis',
|
|
'memcache.locking' => '\OC\Memcache\Redis',
|
|
'redis' => array(
|
|
'host' => '127.0.0.1',
|
|
'port' => 6379,
|
|
'timeout' => 1.5,
|
|
),
|
|
);
|