Replies: 3 comments 15 replies
-
MyISAM 대신 InnoDB를 도입했을 때 얻을 수 있는 장점으로 무엇이 있나요? |
Beta Was this translation helpful? Give feedback.
7 replies
-
MySQL 엔진의 각 구성요소가 어떤 역할을 하는지 설명해주세요 |
Beta Was this translation helpful? Give feedback.
5 replies
-
MySQL의 아키텍처가 다른 DBMS와 비교했을 때 어떤 차이가 있나요? |
Beta Was this translation helpful? Give feedback.
3 replies
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.
Uh oh!
There was an error while loading. Please reload this page.
-
MySQL 서버는 사람의 머리 역할을 하는 MySQL 엔진과 손발 역할을 하는 스토리지 엔진으로 나누어집니다.
MySQL 엔진은 쿼리 파서, 전처리기, 옵티마이저, 실행 엔진으로 구성되어 있습니다. 스토리지 엔진은 핸들러 API를 구현하는 데이터 쓰기, 읽기용 엔진으로 InnoDB, MyISAM등이 있습니다.
Beta Was this translation helpful? Give feedback.
All reactions