본문 바로가기

Study32

(Java) Virtual Threads (가상 쓰레드) 란? Virtual Threads 가상 쓰레드란? Summary 가상 스레드는 처리량이 많은 동시 애플리케이션을 작성, 유지 관리 및 관찰하는 수고를 획기적으로 줄여주는 경량 스레드입니다. Open JDK 에서 소개한 Virtual Thread : https://openjdk.org/jeps/444 History - 요약 : JDK 21 부터 최종버전의 Virtual Thread 가 지원된다. (thread-local 변수 지원 등) 가상 스레드는 JEP 425에 의해 미리보기 기능으로 제안되었고 JDK 19로 전달되었습니다. 피드백을 위한 시간을 허용하고 더 많은 경험을 얻기 위해 JEP 436에 의해 다시 미리보기 기능으로 제안되었고 JDK 20으로 전달되었습니다. 이 JEP는 개발자 피드백에 의해 알려지.. 2023. 7. 30.
Spring MVC vs Webflux 저장용 https://dzone.com/articles/raw-performance-numbers-spring-boot-2-webflux-vs-s 2023. 4. 9.
[Redis Client] Jedis vs Lettuce (Lettuce를 쓰자) Jedis vs Lettuce (Lettuce를 쓰자) 이미 많은 글에서 차이를 다루고 있고, 결론은 최신 프로젝트에서는 Lettuce 를 쓰자 입니다. 기록용으로 왜 Lettuce 써야하는지 핵심만 적어봅니다. Jedis Redis용 Java 클라이언트 https://github.com/redis/jedis GitHub - redis/jedis: Redis Java client designed for performance and ease of use. Redis Java client designed for performance and ease of use. - GitHub - redis/jedis: Redis Java client designed for performance and ease of use.. 2022. 6. 12.
[Reactor 3 Reference Guide] 9. Advanced Features and Concepts - 2 https://projectreactor.io/docs/core/release/reference/#advanced Reactor 3 Reference Guide 10:45:20.200 [main] INFO reactor.Flux.Range.1 - | onSubscribe([Synchronous Fuseable] FluxRange.RangeSubscription) (1) 10:45:20.205 [main] INFO reactor.Flux.Range.1 - | request(unbounded) (2) 10:45:20.205 [main] INFO reactor.Flux.Range.1 - | onNext(1) (3) 1 projectreactor.io 9. Advanced Features and Concepts.. 2021. 11. 18.
[Reactor 3 Reference Guide] 9. Advanced Features and Concepts - 1 https://projectreactor.io/docs/core/release/reference/#advanced Reactor 3 Reference Guide 10:45:20.200 [main] INFO reactor.Flux.Range.1 - | onSubscribe([Synchronous Fuseable] FluxRange.RangeSubscription) (1) 10:45:20.205 [main] INFO reactor.Flux.Range.1 - | request(unbounded) (2) 10:45:20.205 [main] INFO reactor.Flux.Range.1 - | onNext(1) (3) 1 projectreactor.io 9. Advanced Features and Concepts.. 2021. 11. 11.
[Reactor 3 Reference Guide] 6. Testing 6.1. Testing a Scenario with StepVerifier The most common case for testing a Reactor sequence is to have a Flux or a Mono defined in your code (for example, it might be returned by a method) and to want to test how it behaves when subscribed to. This situation translates well to defining a “test scenario,” where you define your expectations in terms of events, step-by-step. You can ask and answe.. 2021. 10. 28.
[Reactor 3 Reference Guide] 4. Reactor Core Features - 2 4.6. Handling Errors For a quick look at the available operators for error handling, see the relevant operator decision tree. In Reactive Streams, errors are terminal events. As soon as an error occurs, it stops the sequence and gets propagated down the chain of operators to the last step, the Subscriber you defined and its onError method. Such errors should still be dealt with at the applicatio.. 2021. 10. 21.
[Reactor 3 Reference Guide] 4. Reactor Core Features Flux : A Flux is a standard Publisher that represents an asynchronous sequence of 0 to N emitted items optionally terminated by either a completion signal or an error. As in the Reactive Streams spec, these three types of signal translate to calls to a downstream Subscriber’s onNext,onComplete, and onError methods. Flux는 표준 Publisher 이다. 0 to N 까지 비동기 시퀀스 아이템 (1)을 나타내며 완료(2)/오류(3) 신호에의해 선택적으로 종료.. 2021. 10. 13.
[보안] MTLS 란? (Mutual TLS Authentication) TLS란? - Transport Layer Security (전송계층보안) SSL 및 TLS는 네트워크를 통해 작동하는 서버, 시스템 및 응용프로그램간에 인증 및 데이터 암호화를 제공하는 암호화 프로토콜입니다. (예시. 웹 브라우저가 웹 서버에 대한 보안 연결을 생성하는 프로토콜) 여기서, 갑자기 SSL이 등장한 이유는 SSL이 TLS의 이전 프로토콜이기 때문입니다. (SSL -> TLS) TLS는 SSL 3.0 기반으로 만들어졌으나, 서로 호환되지 않습니다. SSL은 현재 프로토콜 사용이 폐기되었고, TLS를 사용해야 합니다. en.wikipedia.org/wiki/Transport_Layer_Security - wikipedia X.509 인증서? TLS의 핵심은 PKI (공개 키 인프라)와 특히 X.. 2021. 3. 7.