diff options
author | Carl Schwan <carl@carlschwan.eu> | 2022-06-17 17:24:24 +0200 |
---|---|---|
committer | Arthur Schiwon <blizzz@arthur-schiwon.de> | 2022-07-01 00:15:28 +0200 |
commit | f32c53e5a139b2115abd32501e90bc933f5aa1cf (patch) | |
tree | 56f444eee55346d45c0cdc41c2021ebbfa6416a4 | |
parent | 47934494f6e17ac4926cb2c0be79e94130f4ed82 (diff) | |
download | nextcloud-server-f32c53e5a139b2115abd32501e90bc933f5aa1cf.tar.gz nextcloud-server-f32c53e5a139b2115abd32501e90bc933f5aa1cf.zip |
Enable binary protocol again
Signed-off-by: Carl Schwan <carl@carlschwan.eu>
-rw-r--r-- | lib/private/Memcache/Memcached.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/Memcache/Memcached.php b/lib/private/Memcache/Memcached.php index db4aa7ba9cc..84f220e8a17 100644 --- a/lib/private/Memcache/Memcached.php +++ b/lib/private/Memcache/Memcached.php @@ -63,7 +63,7 @@ class Memcached extends Cache implements IMemcache { \Memcached::OPT_LIBKETAMA_COMPATIBLE => true, // Enable Binary Protocol - //\Memcached::OPT_BINARY_PROTOCOL => true, + \Memcached::OPT_BINARY_PROTOCOL => true, ]; /** * By default enable igbinary serializer if available |