About 26,700 results
Open links in new tab
  1. 17.1 Introduction to InnoDB - MySQL

    InnoDB is a general-purpose storage engine that balances high reliability and high performance. In MySQL 8.4, InnoDB is the default MySQL storage engine. Unless you have configured a different …

  2. InnoDB - Wikipedia

    InnoDB is a storage engine for the database management system MySQL and MariaDB. [1] Since the release of MySQL 5.5.5 in 2010, it replaced MyISAM as MySQL's default table type. [2][3] It provides …

  3. 17 The InnoDB Storage Engine - MySQL

    Chapter 17 The InnoDB Storage Engine Table of Contents 17.1 Introduction to InnoDB 17.1.3 Verifying that InnoDB is the Default Storage Engine 17.2 InnoDB and the ACID Model 17.3 InnoDB Multi …

  4. InnoDB | Server | MariaDB Documentation

    Discover InnoDB, the default storage engine for MariaDB Server. Learn about its transaction-safe capabilities, foreign key support, and high performance for demanding workloads.

  5. MySQL InnoDB Architecture

    InnoDB uses a set of undo log files, often named undo_001.ibd, udo_002.ibd, and so on to store the logs. Summary InnoDB architecture includes in-memory and on-disk structures. InnoDB uses a …

  6. 17.1 Introduction to InnoDB - Oracle

    InnoDB is a general-purpose storage engine that balances high reliability and high performance. In MySQL 8.0, InnoDB is the default MySQL storage engine. Unless you have configured a different …

  7. InnoDB Versions | Server | MariaDB Documentation

    The InnoDB implementation has diverged substantially from the InnoDB in MySQL. Therefore, in these versions, the InnoDB version is no longer associated with a MySQL release version. The default …

  8. Chapter 17 The InnoDB Storage Engine - Oracle

    17.1 Introduction to InnoDB 17.1.1 Benefits of Using InnoDB Tables 17.1.2 Best Practices for InnoDB Tables 17.1.3 Verifying that InnoDB is the Default Storage Engine 17.1.4 Testing and Benchmarking …

  9. InnoDB Architecture Explained (2026): Buffer Pool, Redo Log ...

    May 13, 2026 · Deep dive into InnoDB storage engine internals. Understand buffer pool, redo log, undo log, change buffer, and adaptive hash index for expert-level MySQL optimization.

  10. What Is InnoDB in MySQL - oneuptime.com

    Mar 31, 2026 · InnoDB is MySQL's default storage engine, providing ACID-compliant transactions, row-level locking, and foreign key support for reliable data storage.

  11. Deep Dive into Data Storage in Databases: The InnoDB Engine

    Apr 1, 2024 · In the InnoDB storage engine of MySQL, redo logs primarily capture changes to the database at the data level, such as insertions, updates, and deletions made to the rows of a table.