MySQL에서 사용되는 락에 대해 설명해주세요. #198
Unanswered
Chocochip101
asked this question in
Database
Replies: 1 comment
-
MySQL에서의 잠금은 크게 스토리지 엔진 레벨과 MySQL 엔진 레벨로 나눌 수 있다. MySQL 엔진 레벨의 잠금은 모든 스토리지 엔진에 영향을 미치지만, 스토리지 엔진 레벨의 잠금은 스토리지 엔진 간 상호 영향을 미치지는 않는다.
아래는 InnoDB 스토리지 엔진 내부에서 제공하는 락이다. 레코드 기반의 잠금 방식이므로 MyISAM보다 뛰어난 동시성 처리를 제공할 수 있다.
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
,
Beta Was this translation helpful? Give feedback.
All reactions