You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently connections in the connection pools (spool and dpool) inside a mux will live forever.
It would be nice if we had an option, such as ConnIdleDuration or a better naming, to clean connections that are idle for a long time to reduce memory usage.
The text was updated successfully, but these errors were encountered:
@rueian
Does need option to min size of connection pool? making a new connection is expensive. If all connections is closed, can be harmful to latency sensitive apps. current pool only support cap size.
@rueian Does need option to min size of connection pool? making a new connection is expensive. If all connections is closed, can be harmful to latency sensitive apps. current pool only support cap size.
Currently connections in the connection pools (
spool
anddpool
) inside amux
will live forever.It would be nice if we had an option, such as
ConnIdleDuration
or a better naming, to clean connections that are idle for a long time to reduce memory usage.The text was updated successfully, but these errors were encountered: