scale-out
여러개의 서버를 나눠 일을 하는 방법
load balancing
여러 대의 서버가 분산처리하여 해결해주는 서비스
cluster
여러 대의 컴퓨터를 병렬로 연결하여 하나의 컴퓨터 처럼 사용 (인프라)
round robin
스케줄링을 할때 우선순위를 두지않고 시간순으로 스케줄리해줌
proxy
프록시 서버는 다른 서버를 연결할 때 거쳐감
2018년 11월 2일 금요일
flutter 기본 개념 1
Scaffold - 화면 뼈대 역할 - 기본적으로 AppBar body floatingActionButton 같은걸 배치해줌 return Scaffold ( appBar : AppBar ( title : const Text ...
-
Introduction Dynamic Programming (DP) is a fundamental concept in computer science and algorithmic problem-solving. It's a technique tha...
-
Scaffold - 화면 뼈대 역할 - 기본적으로 AppBar body floatingActionButton 같은걸 배치해줌 return Scaffold ( appBar : AppBar ( title : const Text ...
-
도커 상태 확인 현재 실행중인 프로세스 docker ps 실행 했던 프로세스 docker ps -a 설치된 이미지 목록 docker images 도커 이미지 관리 이미지 받아오기 docker pull image이름 이...