修改统计数据显示问题

This commit is contained in:
MerCry 2026-03-04 13:41:28 +08:00
parent a5264f2ab8
commit 38e61a934d
1 changed files with 2 additions and 1 deletions

View File

@ -50,9 +50,10 @@ import java.util.concurrent.atomic.AtomicInteger;
/**
* 线程池配置 - 用于并行处理客户数据
* 限制为2个线程适应2核2G服务器环境避免内存溢出
*/
private final ExecutorService executorService = Executors.newFixedThreadPool(
Runtime.getRuntime().availableProcessors() * 2,
2,
new ThreadFactory() {
private final AtomicInteger threadNumber = new AtomicInteger(1);
@Override