mysql系列之--redo log

参考手册:

The redo log is a disk-based data structure used during crash recovery to correct data written by incomplete transactions. During normal operations, the redo log encodes requests to change table data that result from SQL statements or low-level API calls. Modifications that did not finish updating the data files before an unexpected shutdown are replayed automatically during initialization, and before the connections are accepted

上一篇:Hash取模为什么要用质数做模数


下一篇:【Java集合】HashMap的get()源码详解以及JDK1.7与JDK1.8的区别