Skip to content
This repository has been archived by the owner on Nov 9, 2017. It is now read-only.

Commit

Permalink
memcached: Up size limit to 2mb
Browse files Browse the repository at this point in the history
This is a guess, to attempt to lower render cache network in/out
  • Loading branch information
DorianGray authored and bsimpson63 committed Aug 1, 2015
1 parent cc01831 commit 16ee56d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion r2/r2/lib/cache.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ def __str__(self):


# 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:
Expand Down

0 comments on commit 16ee56d

Please sign in to comment.