복붙노트

[SPRING] Spring Webflux / WebClient에서 이벤트 루프 풀 크기를 설정하는 방법은 무엇입니까?

SPRING

Spring Webflux / WebClient에서 이벤트 루프 풀 크기를 설정하는 방법은 무엇입니까?

Vert.X와 같은 다중 반응기 프레임 워크에서 이벤트 루프 스레드의 수를 설정할 수 있습니다 (예 :

final VertxOptions vertxOptions = new VertxOptions();
vertxOptions.setEventLoopPoolSize(16);
final Vertx myVertx = Vertx.vertx(vertxOptions);

Spring Boot 2 WebFlux / WebClient에서 해당 기능을 수행하는 방법?

해결법

  1. ==============================

    1.두 가지 옵션이 있습니다.

    두 가지 옵션이 있습니다.

  2. from https://stackoverflow.com/questions/48607114/how-to-set-event-loop-pool-size-in-spring-webflux-webclient by cc-by-sa and MIT license