diff options
| author | PrivateGER <privateger@privateger.me> | 2025-02-26 12:04:38 +0100 |
|---|---|---|
| committer | PrivateGER <privateger@privateger.me> | 2025-02-26 12:04:38 +0100 |
| commit | 15e9c0a57613c48b4dd47fe43b88e9b38388c19a (patch) | |
| tree | a076a9ca1e3145cbf60f6193fed2e0c6b0674829 | |
| parent | override compression from env vars (diff) | |
| download | sharkey-15e9c0a57613c48b4dd47fe43b88e9b38388c19a.tar.gz sharkey-15e9c0a57613c48b4dd47fe43b88e9b38388c19a.tar.bz2 sharkey-15e9c0a57613c48b4dd47fe43b88e9b38388c19a.zip | |
Add warning about memory fragmentation
| -rw-r--r-- | .config/example.yml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/.config/example.yml b/.config/example.yml index 1caaf87eab..59d0708877 100644 --- a/.config/example.yml +++ b/.config/example.yml @@ -424,4 +424,6 @@ checkActivityPubGetSignature: false # Transparently compress every websocket message on clients that support it. # Trades server CPU usage for reduced bandwidth usage and a faster frontend on the client. +# If you're not using jemalloc, this may cause memory fragmentation and performance issues! (https://www.npmjs.com/package/ws#websocket-compression) +# jemalloc is used by default in the Sharkey Docker image and may be set up manually otherwise: https://github.com/jemalloc/jemalloc/wiki/getting-started websocketCompression: false |