mirror of
https://github.com/reddit-archive/reddit.git
synced 2026-04-27 03:00:12 -04:00
memcached: Up size limit to 2mb
This is a guess, to attempt to lower render cache network in/out
This commit is contained in:
committed by
Brian Simpson
parent
cc01831b71
commit
16ee56d1e9
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user