[SPRING] Spring Webflux / WebClient에서 이벤트 루프 풀 크기를 설정하는 방법은 무엇입니까?
SPRINGSpring Webflux / WebClient에서 이벤트 루프 풀 크기를 설정하는 방법은 무엇입니까?
Vert.X와 같은 다중 반응기 프레임 워크에서 이벤트 루프 스레드의 수를 설정할 수 있습니다 (예 :
final VertxOptions vertxOptions = new VertxOptions();
vertxOptions.setEventLoopPoolSize(16);
final Vertx myVertx = Vertx.vertx(vertxOptions);
Spring Boot 2 WebFlux / WebClient에서 해당 기능을 수행하는 방법?
해결법
-
==============================
1.두 가지 옵션이 있습니다.
두 가지 옵션이 있습니다.
from https://stackoverflow.com/questions/48607114/how-to-set-event-loop-pool-size-in-spring-webflux-webclient by cc-by-sa and MIT license
'SPRING' 카테고리의 다른 글
[SPRING] mockito의 Spring 값 주입 (0) | 2019.06.24 |
---|---|
[SPRING] @size (max = value)와 @min (value) 사이의 차이점 @max (value) (0) | 2019.06.24 |
[SPRING] Spring jdbcTemplate 유닛 테스트 (0) | 2019.06.21 |
[SPRING] 스프링 업로드 파일 크기 제한 (0) | 2019.06.20 |
[SPRING] CompletableFuture allof (..). join () vs CompletableFuture.join () (0) | 2019.06.20 |