simple-db
simple-db copied to clipboard
整理上传一些有价值的技术文档
http://download.csdn.net/download/tangyongjundeqian/9058009 java并发编程常识.pptx
https://www.kancloud.cn/devbean/how-databases-work/145503
http://db.csail.mit.edu/6.830/notes.php
https://github.com/DevinZ1993/SimpleDB-Database-System
https://github.com/ZiyueHuang/SimpleDB
http://m.newsmth.net/article/Database/111403
http://www.mingyue.me/archives/%E4%BA%8B%E7%89%A9%E7%AE%A1%E7%90%86/
http://15445.courses.cs.cmu.edu/fall2017/assignments.html
在伯克利这门课叫cs186 University Of Washington cse444 使用的simple-db
http://huili.github.io/sqlite/introduce.html
https://web.stanford.edu/class/cs346/2015/notes/Lecture_One.pdf
http://www.cse.psu.edu/~yul189/cmpsc431w/files/slides/cmpsc431w_lec03_student_ver.pdf
https://www.slideshare.net/chaoslawful
http://techmightsolutions.blogspot.my/2014/07/the-steal-and-no-force-policies.html
分布式系统440 http://www.cs.cmu.edu/~srini/15-440/assignments.html
传统事务与柔性事务 https://www.jianshu.com/p/ab1a1c6b08a1
http://int64.me/2016/%E5%88%86%E5%B8%83%E5%BC%8F%E4%BA%8B%E5%8A%A12PC%20&&%203PC.html
BTreeInternalPage的内存布局: Parent Pointer 4byte | child category 1byte | headers | keys | children | padding
keys == fields 即区间划分阈值, 实际上 keys申请的多内空间多了一个,而且多了的那个空着。 numSlots == keys 和 children 数组实际的数量。 而keys[0] = null
children 数组实际记录的是 pageNo,即页码数 keys 数组实际记录的是划分阈值的具体的值