Replies: 3 comments 7 replies
-
작업을 버퍼링한다는 것에는 어떤 것이 있나요? 더 상세히 설명해주세요 |
Beta Was this translation helpful? Give feedback.
3 replies
-
영속성 컨텍스트를 도입했을 때 직접 체감한 장점이 있나요? 사례를 들어 설명해주세요. |
Beta Was this translation helpful? Give feedback.
3 replies
-
영속성 컨텍스트가 엔티티를 구분하는 기준에 대해 설명해주세요. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
영속성 컨텍스트는 관계형 데이터베이스와 객체지향 사이의 인터페이스 역할을 수행합니다. 작업을 버퍼링 하거나 엔티티를 캐싱하는 것이 주요한 임무입니다. 기본적으로 영속성 컨텍스트는 트랜잭션과 함께 작동합니다. 트랜잭션이 끝날 때 영속성 컨텍스트 내의 작업을 데이터베이스에 동기화하거나 폐기합니다. 이를 통해 데이터의 일관성과 무결성을 보장합니다.
Beta Was this translation helpful? Give feedback.
All reactions