memcached: Up size limit to 2mb

This is a guess, to attempt to lower render cache network in/out
This commit is contained in:
Robert Ditthardt
2015-01-08 14:28:42 -08:00
committed by Brian Simpson
parent cc01831b71
commit 16ee56d1e9

View File

@@ -85,7 +85,7 @@ class MemcachedValueSizeException(Exception):
# validation functions to be used by memcached pools
MEMCACHED_MAX_VALUE_SIZE = 1200 * 1024 # 1.2MB
MEMCACHED_MAX_VALUE_SIZE = 2048 * 1024 # 2MB
def validate_size_warn(**kwargs):
if 'value' in kwargs: