• mysql 数据库 引擎


    mysql> show engines;
    +------------+---------+----------------------------------------------------------------+--------------+-----+------------+
    | Engine     | Support | Comment                                                        | Transactions | XA  | Savepoints |
    +------------+---------+----------------------------------------------------------------+--------------+-----+------------+
    | MyISAM     | YES     | Default engine as of MySQL 3.23 with great performance         | NO           | NO  | NO         | 
    | MRG_MYISAM | YES     | Collection of identical MyISAM tables                          | NO           | NO  | NO         | 
    | BLACKHOLE  | YES     | /dev/null storage engine (anything you write to it disappears) | NO           | NO  | NO         | 
    | CSV        | YES     | CSV storage engine                                             | NO           | NO  | NO         | 
    | MEMORY     | YES     | Hash based, stored in memory, useful for temporary tables      | NO           | NO  | NO         | 
    | InnoDB     | DEFAULT | Supports transactions, row-level locking, and foreign keys     | YES          | YES | YES        | 
    | ARCHIVE    | YES     | Archive storage engine                                         | NO           | NO  | NO         | 
    +------------+---------+----------------------------------------------------------------+--------------+-----+------------+
    7 rows in set (0.00 sec)
    查看数据库使用的引擎
    mysql> show variables like '%storage_engine%';
    +----------------+--------+
    | Variable_name  | Value  |
    +----------------+--------+
    | storage_engine | InnoDB | 
    +----------------+--------+
    1 row in set (0.00 sec)
  • 相关阅读:
    SHELL
    终端如何输出彩色字体
    BTree和B+Tree详解
    博客项目----小功能模块
    python的学习之旅---Mysql数据库
    Python的学习之旅———协程
    python的学习之旅---信号量 定时器
    python的学习之旅---回调机制
    Python的学习之旅———线程 事件
    centos安装redis
  • 原文地址:https://www.cnblogs.com/xaf-dfg/p/3998211.html
Copyright © 2020-2023  润新知