- Web templates
- E-commerce Templates
- CMS & Blog Templates
- Facebook Templates
- Website Builders
InnoDB
July 11, 2016
InnoDB is a storage engine for MySQL. It is usually included by default to MySQL 5.5 and later versions.
InnoDB provides MySQL with a transactional storage engine and crash recovery capabilities.
Also features row level locking, consistent non-locking read in SELECTs and common tablespace for all tables. Row level locking ensures that during an UPDATE, nobody can access that particular row, until the locking transaction issues a COMMIT.
Therefore, mostly, InnoDB is being used when data integrity is in top priority.