2017-05-02 11:44:54 -04:00
|
|
|
<?php
|
2025-06-30 09:04:05 -04:00
|
|
|
|
2026-02-09 04:53:58 -05:00
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
2024-05-10 09:09:14 -04:00
|
|
|
/**
|
|
|
|
|
* SPDX-FileCopyrightText: 2017 Nextcloud GmbH and Nextcloud contributors
|
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
|
*/
|
2017-05-02 11:44:54 -04:00
|
|
|
$CONFIG = [
|
|
|
|
|
'memcache.local' => '\\OC\\Memcache\\Redis',
|
|
|
|
|
'memcache.distributed' => '\\OC\\Memcache\\Redis',
|
|
|
|
|
'memcache.locking' => '\\OC\\Memcache\\Redis',
|
|
|
|
|
'redis' => [
|
2023-10-20 05:36:56 -04:00
|
|
|
'host' => 'localhost',
|
2017-05-02 11:44:54 -04:00
|
|
|
'port' => 6379,
|
|
|
|
|
'timeout' => 0,
|
|
|
|
|
],
|
|
|
|
|
];
|