![]() |
Sign Up! | Tags | Domains | Statistics | Options | Advanced Search |
Tagged: mysql, innodb, innodb data file path, innodb file per table, innodb data home dir, innodb buffer pool size, mvcc, row level locking, innodb log file size, page level locking, innodb flush log at trx commit, table level locking
InnoDB is a storage engine that uses MVCC (described shortly) to provide ACID-compliant transactional data storage using row-level locking. MVCC stands for Multi-Version Concurrency Control. It is how InnoDB allows multiple transactions to look at a data set of one or more tables and have a consistent view of the data. MVCC keeps a virtual snapshot of the dataset for each transaction. An example … Continue Reading »