From b623c052f1be2b23a0f6481cfbce6efe55f00046 Mon Sep 17 00:00:00 2001 From: Neil Williams Date: Thu, 2 May 2013 14:56:58 -0700 Subject: [PATCH] memcache: Reduce compression threshold for page/rendercache. --- r2/r2/lib/app_globals.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/r2/r2/lib/app_globals.py b/r2/r2/lib/app_globals.py index 9246bd074..e203f9668 100755 --- a/r2/r2/lib/app_globals.py +++ b/r2/r2/lib/app_globals.py @@ -457,6 +457,7 @@ class Globals(object): noreply=True, no_block=True, num_clients=num_mc_clients, + min_compress_len=1400, ) # pagecaches hold fully rendered pages @@ -465,6 +466,7 @@ class Globals(object): noreply=True, no_block=True, num_clients=num_mc_clients, + min_compress_len=1400, ) self.startup_timer.intermediate("memcache")