We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
See code at com.alipay.sofa.rpc.transport.rest.RestClientTransport#buildProxy
com.alipay.sofa.rpc.transport.rest.RestClientTransport#buildProxy
ResteasyClient client = builder.registerProvider().logProviders() .connectionPoolSize(transportConfig.getConnectionNum()) .build();
The default value of transportConfig.getConnectionNum() is 1, the performance of rest client is dependence to connection pool size.
transportConfig.getConnectionNum()
1
Use rest client with multiple threads.
java -version
uname -a
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the bug
See code at
com.alipay.sofa.rpc.transport.rest.RestClientTransport#buildProxy
The default value of
transportConfig.getConnectionNum()
is1
, the performance of rest client is dependence to connection pool size.Steps to reproduce
Use rest client with multiple threads.
Environment
java -version
): 1.7.0_80uname -a
): OSXThe text was updated successfully, but these errors were encountered: