diff options
author | Mark Felder <feld@FreeBSD.org> | 2020-03-02 13:00:05 -0600 |
---|---|---|
committer | Mark Felder <feld@FreeBSD.org> | 2020-03-02 13:00:05 -0600 |
commit | f987d83885eef7cd8d114feefe8870a8c5e841c6 (patch) | |
tree | bce2af58f741486adb95b00b1bf63bda75eae2db /docs/configuration | |
parent | 85d571fc238c14bedbc0d9a0af2c7c0d76d62c4a (diff) | |
download | pleroma-f987d83885eef7cd8d114feefe8870a8c5e841c6.tar.gz pleroma-f987d83885eef7cd8d114feefe8870a8c5e841c6.zip |
Clarify in docs how to control connections_pool for Gun.
It could easily be confused with the Hackney settings.
Diffstat (limited to 'docs/configuration')
-rw-r--r-- | docs/configuration/cheatsheet.md | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/docs/configuration/cheatsheet.md b/docs/configuration/cheatsheet.md index 507f15b87..abb5a3c5f 100644 --- a/docs/configuration/cheatsheet.md +++ b/docs/configuration/cheatsheet.md @@ -395,7 +395,8 @@ For each pool, the options are: Advanced settings for connections pool. Pool with opened connections. These connections can be reused in worker pools. -For big instances it's recommended to increase `max_connections` up to 500-1000. It will increase memory usage, but federation would work faster. +For big instances it's recommended to increase `config :pleroma, :connections_pool, max_connections: 500` up to 500-1000. +It will increase memory usage, but federation would work faster. * `:receive_connection_timeout` - timeout to receive connection from pool. Default: 250ms. * `:max_connections` - maximum number of connections in the pool. Default: 250 connections. |