diff options
author | ll-SKY-ll <140309860+ll-SKY-ll@users.noreply.github.com> | 2024-05-09 12:50:05 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-09 10:50:05 +0000 |
commit | 4cf4a8281b822017527969d7b5077dfc5f7f0b39 (patch) | |
tree | 22b491e6ad88ac37b1602bff46158b5cde10790d /docs/usage | |
parent | Bump black from 24.2.0 to 24.4.2 (#17170) (diff) | |
download | synapse-4cf4a8281b822017527969d7b5077dfc5f7f0b39.tar.xz |
Update docs to bump libjemalloc version on latest debian; correct "push_rules" stream name (#17171)
Diffstat (limited to 'docs/usage')
-rw-r--r-- | docs/usage/administration/admin_faq.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/usage/administration/admin_faq.md b/docs/usage/administration/admin_faq.md index 0d98f73fb1..a1184d0375 100644 --- a/docs/usage/administration/admin_faq.md +++ b/docs/usage/administration/admin_faq.md @@ -250,10 +250,10 @@ Using [libjemalloc](https://jemalloc.net) can also yield a significant improvement in overall memory use, and especially in terms of giving back RAM to the OS. To use it, the library must simply be put in the LD_PRELOAD environment variable when launching Synapse. On Debian, this -can be done by installing the `libjemalloc1` package and adding this +can be done by installing the `libjemalloc2` package and adding this line to `/etc/default/matrix-synapse`: - LD_PRELOAD=/usr/lib/x86_64-linux-gnu/libjemalloc.so.1 + LD_PRELOAD=/usr/lib/x86_64-linux-gnu/libjemalloc.so.2 This made a significant difference on Python 2.7 - it's unclear how much of an improvement it provides on Python 3.x. |