Spring AMQP
Spring AMQP https://spring.io/projects/spring-amqp#overview https://preamtree.tistory.com/172 https://metabuild-labs.tistory.com/4#:~:text=Spring%20AMQP%EB%8A%94%20AMQP%20%EA%B8%B0%EB%B0%98...
Spring AMQP https://spring.io/projects/spring-amqp#overview https://preamtree.tistory.com/172 https://metabuild-labs.tistory.com/4#:~:text=Spring%20AMQP%EB%8A%94%20AMQP%20%EA%B8%B0%EB%B0%98...
Shell Script 쉘 스크립트 리눅스나 유닉스에서 커맨드라인 인터프리터에 의해 실행되는 프로그램이다. 쉘 스크립트의 첫 줄에는 샤뱅(#!)을 적고, 사용하고자하는 쉘을 적어준다. 예를 들어, 본쉘을 사용하는 경우 다음과 같이 적는다. #!/bin/bash 변수 변수 선언은 “=” 사용, 공백은 없어야한다. name="hero" age=...
Reverse Proxy
RabbitMQ https://www.tutlane.com/tutorial/rabbitmq/introduction-to-rabbitmq
RabbitMQ with Spring Boot Project Initialization
RabbitMQ Installation OS: macOS 설치도구: homebrew RabbitMQ 설치 설치하기 전에 brew가 최신버전인지 확실히 한다. brew update brew를 통해 RabbitMQ 서버를 설치한다. brew install rabbitmq RabbitMQ의 서버 스크립트나 CLI tools가 /usr/l...
Message Queue https://medium.com/free-code-camp/how-to-scale-microservices-with-message-queues-spring-boot-and-kubernetes-f691b7ba3acf https://steady-snail.tistory.com/165 https://aws.amazo...
Circuit Braker
3-1. 페이징 성능 개선하기 - 검색 버튼 사용시 페이지 건수 고정하기 커서 기반 페이지네이션 (Cursor-based Pagination) 구현하기 Pagination performance guidelines SQL Pagination Techniques: Enhancing Query Performance and Managing Memo...
점 이력, 선분 이력 점 이력 점 이력은 특정 시점에서의 데이터 상태를 기록하는 방식이다. 데터의 변경 사항을 추적하고 해당 시점에서의 데이터 값을 유지한다. 선분 이력 선분 이력은 데이터의 변경 사항을 추적하면서 데이터의 유효 기간을 관리하는 방식이다. 각 데이터에는 시작 시간과 종료 시간이 포함된다. 참고 자료 https://ori...