summary refs log tree commit diff
path: root/synapse/python_dependencies.py
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2021-04-23 11:59:43 +0100
committerErik Johnston <erik@matrix.org>2021-04-23 16:26:10 +0100
commite9f5812efff29b08bd35724689d10a362b410168 (patch)
tree9be6f6e5dba999b99b30b9fa635420b2e4587905 /synapse/python_dependencies.py
parentMake DomainSpecificString an attrs class (#9875) (diff)
downloadsynapse-e9f5812efff29b08bd35724689d10a362b410168.tar.xz
Track memory usage of caches
Diffstat (limited to 'synapse/python_dependencies.py')
-rw-r--r--synapse/python_dependencies.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/synapse/python_dependencies.py b/synapse/python_dependencies.py

index 2a1c925ee8..77176a6cd9 100644 --- a/synapse/python_dependencies.py +++ b/synapse/python_dependencies.py
@@ -121,6 +121,7 @@ CONDITIONAL_REQUIREMENTS = { # hiredis is not a *strict* dependency, but it makes things much faster. # (if it is not installed, we fall back to slow code.) "redis": ["txredisapi>=1.4.7", "hiredis"], + "cache_memroy": ["pympler"], } ALL_OPTIONAL_REQUIREMENTS = set() # type: Set[str]