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? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
比如woker线程池只开了50个,处理速度又比较慢,当worker线程都在忙时,新进来的请求会放到线程池的排队队列里面吗?线程池的排队队列的大小可以设置吗?
The text was updated successfully, but these errors were encountered:
连接池可以设置, RpcServerOptions以下参数 /** The acceptor threads. */ private int acceptorThreads = 0; // acceptor threads. default use Netty default value
/** The work threads. */ private int workThreads = 0; // work threads. default use Netty default value
Sorry, something went wrong.
连接池的工作线程可以设置,好像排队队列不能设置的
排队目前不能设置
No branches or pull requests
比如woker线程池只开了50个,处理速度又比较慢,当worker线程都在忙时,新进来的请求会放到线程池的排队队列里面吗?线程池的排队队列的大小可以设置吗?
The text was updated successfully, but these errors were encountered: