Elastic Search - 개요! 작성일 2023-05-06 Edited on 2026-03-03 In elasticsearch 개요Doug Cutting 이 고안한 역색인(Inverted Index) 구조의 문서형태의 데이터 베이스 + 검색(분석)도구 더 읽어보기 »
Spring Boot - Kafka! 작성일 2023-04-13 Edited on 2026-03-03 In springboot 개요 https://kafka.apache.org/ 출처: https://github.com/AndersonChoi/tacademy-kafka 더 읽어보기 »
Spring Boot - gprc! 작성일 2023-04-13 Edited on 2026-03-03 In springboot 개요object, struct, list, array, map, tree 와 같은 데이터를 파일에 쓰거나 네트워크 전송시 데이터를 일련의 바이트열로 직렬화 해야한다. 더 읽어보기 »
객체지향! 작성일 2023-03-13 Edited on 2026-03-03 In 기타 상속(inheritance) 흔히 상속을 is-a 관계라 표현하는데 좀더 명확한 표현은 is a kind of관계라 할 수 있다. 더 읽어보기 »
Spring Cloud - Resilience4J! 작성일 2023-03-03 Edited on 2026-03-03 In spring-cloud Resilience4J https://github.com/resilience4j/resilience4jhttps://resilience4j.readme.io/docs 더 읽어보기 »
Kotlin - coroutine! 작성일 2023-02-16 Edited on 2026-03-03 In kotlin 코루틴 참고: https://myungpyo.medium.com/reading-coroutine-official-guide-thoroughly-part-0-20176d431e9d 더 읽어보기 »
Kotlin - 클래스! 작성일 2023-02-13 Edited on 2026-03-03 In kotlin 클래스java 의 경우 바이트코드로 변환되고 디컴파일 했을 때 다시 생성되는 java 코드가 상당부분 유사하다.kotline 의 경우 바이트코드로 변환하고 디컴파일 했을 때 생성되는 java 코드를 보면 마음대로 풀어서 쓴 느낌이다. 더 읽어보기 »
Spring Cloud - Loadbalancer, Feign! 작성일 2023-02-13 Edited on 2026-03-03 In spring-cloud Client-side Load balancerLoad Balancing 은 들어오는 트래픽을 여러 백엔드 서버에 효율적으로 분산시키는 것을 의미한다. 더 읽어보기 »
Spring Cloud - Spring Cloud Stream 작성일 2023-02-13 Edited on 2026-03-03 In spring-cloud Message Driven System이벤트 기반 마이크로서비스의 일종서비스간 소비 가능한 이벤트를 주고받으며 서로 비동기 통신을 진행하는 시스템을 뜻한다. 더 읽어보기 »
Kotlin - 콜렉션! 작성일 2023-02-12 Edited on 2026-03-03 In kotlin 콜렉션java kotlin 콜렉션을 사용하며 immutable콜렉션, mutable콜렉션을 제공한다. 더 읽어보기 »