From 05b98bb07747cf10764233c45ec8edee89e89e0c Mon Sep 17 00:00:00 2001 From: Phillip Taylor Date: Mon, 10 Sep 2018 09:29:28 +0100 Subject: [PATCH] Bump max size again --- src/main/java/net/spy/memcached/CachedData.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/net/spy/memcached/CachedData.java b/src/main/java/net/spy/memcached/CachedData.java index 843b382f7..275207770 100644 --- a/src/main/java/net/spy/memcached/CachedData.java +++ b/src/main/java/net/spy/memcached/CachedData.java @@ -37,7 +37,7 @@ public final class CachedData { * though memcached no longer has a maximum size, rather than remove this * entirely just bump it up for now */ - public static final int MAX_SIZE = 20 * 1024 * 1024; + public static final int MAX_SIZE = 60 * 1024 * 1024; private final int flags; private final byte[] data;