Concorrency
Java Concurrency References https://deveric.tistory.com/104
Java Concurrency References https://deveric.tistory.com/104
Closure 클로저는 어떤 함수가 주변 상태(렉시컬 환경)에 대한 참조와 함께 번들로 묶인(포함된) 함수의 조합이다. 즉, 클로저를 사용하면 내부함수에서 외부함수의 범위에 접근할 수 있다. 자바 스크립트에서는 함수가 생성될 때 마다 클로저가 생성된다. 클로저(closure)는 내부함수가 외부함수의 맥락(context)에 접근할 수 있는 것을...
Token Authentication References https://www.okta.com/identity-101/what-is-token-based-authentication/ https://auth0.com/docs/secure/tokens/token-best-practices
OAuth 2.0 Referneces https://inpa.tistory.com/entry/WEB-%F0%9F%93%9A-OAuth-20-%EA%B0%9C%EB%85%90-%F0%9F%92%AF-%EC%A0%95%EB%A6%AC
Timeout Timeout의 종류
SSL/TLS In LB In Server In Application
Apache Zookeeper Apache Zookeeper는 아파치 소프트웨어 재단의 소프트웨어 프로젝트이며, 대규모 분산 시스템에서의 분산된 서비스의 설정, 서비스의 동기화, 그리고 네이밍 레지스트리를 제공한다. Zookeeper는 Hadoop의 서브 프로젝트 였으나, 이제는 독립적인 프로젝트로서 자리잡았다. 1. Zookeeper Data M...
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