diff options
author | Mark Haines <mjark@negativecurvature.net> | 2015-02-11 15:44:09 +0000 |
---|---|---|
committer | Mark Haines <mjark@negativecurvature.net> | 2015-02-11 15:44:09 +0000 |
commit | 40f332e5348bd301bb623870eddb3adf1ca363f3 (patch) | |
tree | 20f3eda004e9b35217263033a525382dbaac6422 /synapse/config/_base.py | |
parent | Mention new libs in CHANGES (diff) | |
parent | Invalidate the cache for an event if it is redacted (diff) | |
download | synapse-40f332e5348bd301bb623870eddb3adf1ca363f3.tar.xz |
Merge pull request #65 from matrix-org/get_event_cache
Add an in-memory cache for get_event in the storage layer
Diffstat (limited to 'synapse/config/_base.py')
-rw-r--r-- | synapse/config/_base.py | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/synapse/config/_base.py b/synapse/config/_base.py index 9b0f8c3c32..87cdbf1d30 100644 --- a/synapse/config/_base.py +++ b/synapse/config/_base.py @@ -28,6 +28,16 @@ class Config(object): pass @staticmethod + def parse_size(string): + sizes = {"K": 1024, "M": 1024 * 1024} + size = 1 + suffix = string[-1] + if suffix in sizes: + string = string[:-1] + size = sizes[suffix] + return int(string) * size + + @staticmethod def abspath(file_path): return os.path.abspath(file_path) if file_path else file_path |