Computer >> 컴퓨터 >  >> 프로그램 작성 >> MySQL

스토리지 엔진이란 무엇이며 MySQL 설치에서 지원하는 스토리지 엔진 목록을 확인하는 방법은 무엇입니까?


데이터베이스에서 데이터 생성, 읽기, 업데이트 및 삭제와 같은 다양한 SQL 작업을 처리하기 위해 데이터베이스 관리 시스템(DBMS)이 사용하는 소프트웨어 구성요소로 정의될 수 있습니다. 즉, DBMS에서 데이터베이스의 정보를 관리하는 데 사용됩니다. 가장 널리 사용되는 스토리지 엔진은 MySQL5.5 이상 버전의 기본 스토리지 엔진이기도 한 InnoDB입니다. MySQL5.5 이전에는 기본 스토리지 엔진이 MyISAM이었습니다.

SHOW ENGINES 명령을 사용하여 MySQL 설치에서 지원하는 스토리지 엔진 목록을 확인할 수 있습니다. −

mysql> SHOW ENGINES\G
*************************** 1. row ***************************
      Engine: FEDERATED
     Support: NO
     Comment: Federated MySQL storage engine
Transactions: NULL
          XA: NULL
  Savepoints: NULL
*************************** 2. row ***************************
      Engine: MRG_MYISAM
     Support: YES
     Comment: Collection of identical MyISAM tables
Transactions: NO
          XA: NO
  Savepoints: NO
*************************** 3. row ***************************
      Engine: MyISAM
     Support: YES
     Comment: MyISAM storage engine
Transactions: NO
          XA: NO
  Savepoints: NO
*************************** 4. row ***************************
      Engine: BLACKHOLE
     Support: YES
     Comment: /dev/null storage engine (anything you write to it disappear
Transactions: NO
          XA: NO
  Savepoints: NO
*************************** 5. row ***************************
      Engine: CSV
     Support: YES
     Comment: CSV storage engine
Transactions: NO
          XA: NO
  Savepoints: NO
*************************** 6. row ***************************
      Engine: MEMORY
     Support: YES
     Comment: Hash based, stored in memory, useful for temporary tables
Transactions: NO
          XA: NO
  Savepoints: NO
*************************** 7. row ***************************
      Engine: ARCHIVE
     Support: YES
     Comment: Archive storage engine
Transactions: NO
          XA: NO
  Savepoints: NO
*************************** 8. row ***************************
      Engine: InnoDB
     Support: DEFAULT
     Comment: Supports transactions, row-level locking, and foreign keys
Transactions: YES
          XA: YES
  Savepoints: YES
*************************** 9. row ***************************
      Engine: PERFORMANCE_SCHEMA
     Support: YES
     Comment: Performance Schema
Transactions: NO
          XA: NO
  Savepoints: NO
9 rows in set (0.00 sec)