perf[thread]: increase the event threads

This commit is contained in:
godotg
2024-02-23 11:09:46 +08:00
parent 4a35397432
commit 5dc92cfd5a
@@ -45,7 +45,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;
private static final int EXECUTORS_SIZE = Runtime.getRuntime().availableProcessors() * 2 + 1;
private static final ExecutorService[] executors = new ExecutorService[EXECUTORS_SIZE];