修改统计数据显示问题

This commit is contained in:
MerCry 2026-03-04 14:17:58 +08:00
parent 38e61a934d
commit 14425ebf4a
1 changed files with 2 additions and 2 deletions

View File

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