- Created a comprehensive article on MVCC (Multi-Version Concurrency Control) explaining its principles, challenges in concurrency control, and the mechanisms of current reads and snapshot reads. - Added an in-depth exploration of MySQL's binlog, redolog, and undolog, detailing their purposes, differences, and roles in data recovery and transaction management. - Developed a thorough guide on MySQL's locking mechanisms, including global locks, table-level locks, and row-level locks, with explanations of intent locks, auto-increment locks, and the implications of each locking strategy on concurrency and data integrity.
22 lines
570 B
JSON
22 lines
570 B
JSON
{
|
|
"editor.formatOnSave": true,
|
|
"editor.defaultFormatter": "biomejs.biome",
|
|
"[javascript]": {
|
|
"editor.defaultFormatter": "biomejs.biome"
|
|
},
|
|
"[javascriptreact]": {
|
|
"editor.defaultFormatter": "biomejs.biome"
|
|
},
|
|
"[typescript]": {
|
|
"editor.defaultFormatter": "biomejs.biome"
|
|
},
|
|
"[typescriptreact]": {
|
|
"editor.defaultFormatter": "biomejs.biome"
|
|
},
|
|
"editor.codeActionsOnSave": {
|
|
"source.fixAll": "explicit",
|
|
"quickfix.biome": "always",
|
|
"source.organizeImports.biome": "always"
|
|
},
|
|
"frontMatter.dashboard.openOnStart": false
|
|
} |