We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
엔티티 간 직접적인 참조를 제거하고 ID를 통한 간접 참조로 전환합니다. 이 작업은 헥사고날 아키텍처의 외부-내부 의존성 역전을 준수함과 동시에, 성능 및 운영적인 측면에서의 문제를 해결하기 위함입니다.
1. 성능 문제
2. 운영 복잡도
3. 스키마 변경의 어려움
1. 애플리케이션 단에서 무결성 검사
2. 트랜잭션 관리
3. 데이터 유효성 체크
4. 도메인 이벤트 사용
The text was updated successfully, but these errors were encountered:
limehee
Successfully merging a pull request may close this issue.
Describe
엔티티 간 직접적인 참조를 제거하고 ID를 통한 간접 참조로 전환합니다. 이 작업은 헥사고날 아키텍처의 외부-내부 의존성 역전을 준수함과 동시에, 성능 및 운영적인 측면에서의 문제를 해결하기 위함입니다.
외래키의 애플리케이션 성능 및 운영 측면의 단점
1. 성능 문제
2. 운영 복잡도
3. 스키마 변경의 어려움
정합성 문제 보완 방안
1. 애플리케이션 단에서 무결성 검사
2. 트랜잭션 관리
3. 데이터 유효성 체크
4. 도메인 이벤트 사용
The text was updated successfully, but these errors were encountered: