-
Notifications
You must be signed in to change notification settings - Fork 646
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Provide ConnectionProvider
configuration for limiting the number of the connection pools
#3318
Comments
ConnectionProvider
for limiting the number of the connection pools
ConnectionProvider
for limiting the number of the connection poolsConnectionProvider
configuration for limiting the number of the connection pools
@violetagg when read from https://projectreactor.io/docs/netty/release/api/reactor/netty/resources/ConnectionProvider.htm but here https://projectreactor.io/docs/netty/1.2.0-M4/reference/tcp-client.html so, how can ConnectionProvider reuse connection? |
@cloudzhou for TCP client you cannot reuse the connections, the connection pool is used to limit the number of the connections that you can open. |
so confused about that, TCP client and reuse connections is so common and important |
@cloudzhou as we pointed in the documentation |
so is there a recommend way to pooled and reuse the connection? |
@cloudzhou Take a look at R2DBC pool https://github.com/r2dbc/r2dbc-pool (it uses TcpClient) If you have more questions let's continue on Gitter |
This is a follow up issue for #3315 (comment)
The text was updated successfully, but these errors were encountered: