Commit e751690f authored by tangwei's avatar tangwei

修改线程数

parent ed3ff9b5
...@@ -26,9 +26,9 @@ public class JxiopExecutorConfig { ...@@ -26,9 +26,9 @@ public class JxiopExecutorConfig {
//配置核心线程数 //配置核心线程数
executor.setCorePoolSize(30); executor.setCorePoolSize(30);
//配置最大线程数 //配置最大线程数
executor.setMaxPoolSize(500); executor.setMaxPoolSize(800);
//配置队列大小 //配置队列大小
executor.setQueueCapacity(3000); executor.setQueueCapacity(5000);
//配置线程池中的线程的名称前缀 //配置线程池中的线程的名称前缀
executor.setThreadNamePrefix("jxiop"); executor.setThreadNamePrefix("jxiop");
//线程池维护线程所允许的空闲时间 //线程池维护线程所允许的空闲时间
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment