Percona XtraDB is an enhanced version of InnoDB database engine.
Default storage engine in MySQL 5.5
InnoDB recovers from a crash or other unexpected shutdown by replaying its logs
InnoDB automatically groups together multiple concurrent inserts and flushes them to disk at the same time
ACID compliant
Transactional support: data integrity is guaranteed in the entire query process
InnoDB uses row-level locking, as opposed to table locking in MyISAM. InnoDB can modify multiple rows concurrently, where MyISAM can only do one at a time
Full text search (same as MyISAM)
Foreign key constraints
Designed for high performance
Hot backup: do a full backup while reads/writes are still happening
Updates are written to the log first, and then the changes are made to the database