Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

qlido : DDD 10 ~ 11 #17

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Empty file.
23 changes: 23 additions & 0 deletions 1. 도메인 주도 개발 시작하기/10 ~ 11/qlido.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
### 1. 이벤트는 무엇인가요?

### 2. 이벤트를 왜 사용하나요??

### 3. 이벤트는 어떤 목적을 가지고 사용 되나요??

### 4. CQRS란?

### 5. CQRS의 단점




1. 이벤트는 과거에 벌어진 어떤 것

2. 시스템끼리 강결합으로 있어서 트렌젝션 처리가 힘들고 성능이 외부 서비스에 영향을 받기 때문이다

3. 트리거와 서로 다른 시스템 간의 데이터 동기화를 할 때 사용된다.

4. Command Query Responsivility Segregation의 약자임 조회와 명령 모델을 분리하는 것을 의미함

5. 더 많은 구현 기술이 필요하고 구현해야할 코드가 많아짐. 복잡하지 않은 도메인은 구현이 더욱 힘들어짐