diff options
author | Carl Schwan <carl@carlschwan.eu> | 2022-06-13 09:55:35 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-13 09:55:35 +0200 |
commit | 1d35efdd1fe67aed2007c8af51808c473bc03222 (patch) | |
tree | 88a51510a92b1917ca3515b02618067d3061dc2c /config | |
parent | 4ecedffb5b97604c7cfa88e8bd427177d7d3fc82 (diff) | |
parent | 2df0f53d0e88f0b5a15b730fbd6cdb794e2a90b4 (diff) | |
download | nextcloud-server-1d35efdd1fe67aed2007c8af51808c473bc03222.tar.gz nextcloud-server-1d35efdd1fe67aed2007c8af51808c473bc03222.zip |
Merge pull request #31197 from nextcloud/acsfer-patch-1
Add memcached unix socket instructions
Diffstat (limited to 'config')
-rw-r--r-- | config/config.sample.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/config/config.sample.php b/config/config.sample.php index b51afd32ccc..9856aeba4d7 100644 --- a/config/config.sample.php +++ b/config/config.sample.php @@ -1385,7 +1385,8 @@ $CONFIG = [ * Server details for one or more memcached servers to use for memory caching. */ 'memcached_servers' => [ - // hostname, port and optional weight. Also see: + // hostname, port and optional weight + // or path and port 0 for unix socket. Also see: // https://www.php.net/manual/en/memcached.addservers.php // https://www.php.net/manual/en/memcached.addserver.php ['localhost', 11211], |