Inno DB
Everything on SkillVeris tagged Inno DB — collected across the glossary, study notes, blog, and cheat sheets.
3 resources across 1 library
Interview Questions(3)
What is the Repeatable Read Isolation Level?
Repeatable Read is an isolation level that guarantees any row a transaction has read will return the exact same values if read again later in that same transac…
Redo Log vs Undo Log: What is the Difference?
A redo log records the new value produced by a change so committed effects can be reapplied after a crash, while an undo log records the old value that existed…
B-Tree vs LSM-Tree Storage: Which Should You Choose?
B-trees update data in place with balanced, sorted disk pages that favor fast, low-amplification reads, while LSM-trees buffer writes in memory and flush them…