如何为CompletableFuture选择执行器::supplyAsync
2022-09-03 15:52:00
CompletableFuture::supplyAsync(() -> IO bound queries)
我如何为CompletableFuture::supplyAsync选择执行器以避免污染.ForkJoinPool.commonPool()
(, 等) 中有很多选项Executors
newCachedThreadPool
newWorkStealingPool
newFixedThreadPool
我在这里读到了关于新的ForkJoinPool的信息
如何为我的用例选择合适的一个?