diff options
author | Erik Johnston <erik@matrix.org> | 2018-08-20 13:01:46 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2018-08-20 13:01:46 +0100 |
commit | f2a48d87df3129bd32597cb7e28496ade0fa8250 (patch) | |
tree | a581b8058c5921cef8181ca8a446b15eafa21985 /synapse | |
parent | Merge pull request #3713 from matrix-org/erikj/fixup_fed_logging (diff) | |
download | synapse-f2a48d87df3129bd32597cb7e28496ade0fa8250.tar.xz |
Use get_cache_factor_for function for `state_cache`
This allows the cache factor for `state_cache` to be individually specified in the enviroment
Diffstat (limited to 'synapse')
-rw-r--r-- | synapse/state.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/synapse/state.py b/synapse/state.py index 8b92d4057a..0f2bedb694 100644 --- a/synapse/state.py +++ b/synapse/state.py @@ -29,7 +29,7 @@ from synapse.api.constants import EventTypes from synapse.api.errors import AuthError from synapse.events.snapshot import EventContext from synapse.util.async_helpers import Linearizer -from synapse.util.caches import CACHE_SIZE_FACTOR +from synapse.util.caches import get_cache_factor_for from synapse.util.caches.expiringcache import ExpiringCache from synapse.util.logutils import log_function from synapse.util.metrics import Measure @@ -40,7 +40,7 @@ logger = logging.getLogger(__name__) KeyStateTuple = namedtuple("KeyStateTuple", ("context", "type", "state_key")) -SIZE_OF_CACHE = int(100000 * CACHE_SIZE_FACTOR) +SIZE_OF_CACHE = 100000 * get_cache_factor_for("state_cache") EVICTION_TIMEOUT_SECONDS = 60 * 60 |