Shell Script Notes Shell Script 쉘 스크립트 리눅스나 유닉스에서 커맨드라인 인터프리터에 의해 실행되는 프로그램이다. 쉘 스크립트의 첫 줄에는 샤뱅(#!)을 적고, 사용하고자하는 쉘을 적어준다. 예를 들어, 본쉘을 사용하는 경우 다음과 같이 적는다. #!/bin/bash 변수 변수 선언은 “=” 사용, 공백은 없어야한다. name="hero" age=... 2024/09/05 Archive, Infrastructure
RabbitMQ Notes RabbitMQ https://www.tutlane.com/tutorial/rabbitmq/introduction-to-rabbitmq 2024/09/05 Archive, Infrastructure
RabbitMQ with Spring Boot Notes RabbitMQ with Spring Boot Project Initialization 2024/09/05 Archive, Infrastructure
RabbitMQ Installation Notes RabbitMQ Installation OS: macOS 설치도구: homebrew RabbitMQ 설치 설치하기 전에 brew가 최신버전인지 확실히 한다. brew update brew를 통해 RabbitMQ 서버를 설치한다. brew install rabbitmq RabbitMQ의 서버 스크립트나 CLI tools가 /usr/l... 2024/09/05 Archive, Infrastructure
Message Queue Notes 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... 2024/09/05 Archive, Infrastructure
Transaction Notes Transaction https://velog.io/@ch200203/MSA-%ED%99%98%EA%B2%BD%EC%97%90%EC%84%9C%EC%9D%98-%EB%B6%84%EC%82%B0-%ED%8A%B8%EB%9E%9C%EC%9E%AD%EC%85%98-%EA%B4%80%EB%A6%AC2PC-SAGA-%ED%8C%A8%ED%84%B4 2024/09/05 Notes, Common
System Structure & Program Execution Notes System Structure & Program Execution 2024/09/05 Notes, Common
MultiThreading and Thread Scheduling Notes MultiThreading and Thread Scheduling 멀티스레드는 프로세스 내 작업을 여러 개의 스레드로 분할함으로써 작업의 부담을 줄이는 프로세스 운영 기법이다. 멀티스레드 (by OS) : 운영체제가 소프트웨어적으로 프로세스를 작은 단위의 스레드로 분할하려 운영하는 기법 CPU 멀티스레드 : 하드웨어적인 방법으로 ... 2024/09/05 Notes, Common