Skip to content

Commit

Permalink
refactor: Async ThreadPool 스레드 수 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
Kim0914 committed Jan 11, 2024
1 parent 8630a23 commit 5604c11
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public class AsyncConfig implements AsyncConfigurer {
@Override
public Executor getAsyncExecutor() {
ThreadPoolTaskExecutor executor = new ThreadPoolTaskExecutor();
executor.setCorePoolSize(40);
executor.setCorePoolSize(20);
// executor.setQueueCapacity(15);
// executor.setMaxPoolSize(200);
executor.setThreadNamePrefix("2024-Pium-Thread: ");
Expand Down

0 comments on commit 5604c11

Please sign in to comment.