Skip to content

Commit

Permalink
speedup: use default work stealing executor for "async" cache
Browse files Browse the repository at this point in the history
  • Loading branch information
Pfeil committed Aug 29, 2024
1 parent efb4bf5 commit 160bfe0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/edu/kit/datamanager/pit/Application.java
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ public class Application {
protected static final String ERROR_COMMUNICATION = "Communication error: {}";
protected static final String ERROR_CONFIGURATION = "Configuration error: {}";

protected static final Executor EXECUTOR = Executors.newWorkStealingPool(35);
protected static final Executor EXECUTOR = Executors.newWorkStealingPool();


@Bean
Expand Down

0 comments on commit 160bfe0

Please sign in to comment.