Reduce cache size

This commit is contained in:
Erik Johnston 2016-03-23 09:28:07 +00:00
parent d531ebcb57
commit 9e2e994395

View File

@ -39,7 +39,7 @@ KeyStateTuple = namedtuple("KeyStateTuple", ("context", "type", "state_key"))
CACHE_SIZE_FACTOR = float(os.environ.get("SYNAPSE_CACHE_FACTOR", 0.1))
SIZE_OF_CACHE = int(5000 * CACHE_SIZE_FACTOR)
SIZE_OF_CACHE = int(1000 * CACHE_SIZE_FACTOR)
EVICTION_TIMEOUT_SECONDS = 60 * 60