Skip to content

Commit

Permalink
fix: 스레드 풀 개수 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
kariskan committed Aug 28, 2024
1 parent b2464ad commit 30f2c09
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
public class CommonConstant {
public static final Character[] FILE_NAME_BLACK_LIST = {'\\', '/', ':', '*', '?', '"', '<', '>', '|'};
public static final int MAX_FOLDER_DEPTH = 50;
public static final int FILE_WRITER_CORE_POOL_SIZE = 3;
public static final int FILE_WRITER_MAXIMUM_POOL_SIZE = 5;
public static final int FILE_WRITER_CORE_POOL_SIZE = 200;
public static final int FILE_WRITER_MAXIMUM_POOL_SIZE = 400;
public static final int FILE_WRITER_KEEP_ALIVE_TIME = 10;
public static final int FILE_WRITER_QUEUE_SIZE = 100;
public static final int THUMBNAIL_WRITER_CORE_POOL_SIZE = 10;
Expand Down

0 comments on commit 30f2c09

Please sign in to comment.