mirror of
https://github.com/tiennm99/zfoo.git
synced 2026-06-01 14:11:43 +00:00
perf[event]: enlarge event executor size
This commit is contained in:
@@ -47,7 +47,7 @@ public abstract class EventBus {
|
||||
* EN: The size of the thread pool. Event's thread pool is often used to do time-consuming operations, so set it a little bigger
|
||||
* CN: 线程池的大小. event的线程池经常用来做一些耗时的操作,所以要设置大一点
|
||||
*/
|
||||
private static final int EXECUTORS_SIZE = Runtime.getRuntime().availableProcessors() * 2 + 1;
|
||||
private static final int EXECUTORS_SIZE = Math.max(Runtime.getRuntime().availableProcessors(), 4) * 2 + 1;
|
||||
|
||||
private static final ExecutorService[] executors = new ExecutorService[EXECUTORS_SIZE];
|
||||
|
||||
|
||||
Reference in New Issue
Block a user