├── README.md ├── database ├── AliSQL │ ├── 20170724 AliSQL 引领开源技术变革之路.pdf │ ├── AliSQL breakthrough for the future Percona live 2017(V3).pdf │ ├── What's new in AliSQL.pdf │ └── readme.md ├── MySQL │ ├── Buffer Pool Implementation InnoDB vs Oracle.pdf │ ├── InnoDB Log Block Structure.jpg │ ├── InnoDB Transaction Lock and MVCC.pdf │ ├── InnoDB 日志 回滚段 崩溃恢复实现详解.pdf │ ├── MVCC Oracle vs InnoDB vs PG.pdf │ ├── MySQL 5.6新特性深入剖析——InnoDB引擎.pdf │ ├── MySQL InnoDB 查询优化实现分析.pdf │ ├── MySQL InnoDB 源码实现分析.pdf │ ├── MySQL 加锁处理分析.pdf │ ├── MySQL 外部XA及其在分布式事务中的应用分析.pdf │ ├── MySQL查询优化浅析.pdf │ ├── Mysql InnoDB多版本可见性分析.pdf │ ├── Oracle RAC资源管理算法与Cache-Fusion实现浅析.pdf │ ├── readme.md │ ├── 数据库系统的优化与调优:从理论到实践.pdf │ └── 管中窥豹——MySQL(InnoDB)死锁分析之道.pdf ├── RocksDB │ ├── MyRocks best practice at Alibaba - percona.pdf │ ├── RocksDB(MyRocks)源码学习—写.pdf │ ├── RocksDB(MyRocks)源码学习—读.pdf │ └── readme.md ├── The Case for Learned Index Structures.pdf └── readme.md ├── distributed ├── PaxosRaft 分布式一致性算法原理剖析及其在实战中的应用.pdf ├── readme.md ├── 数据一致性-分区可用性-性能——多副本强同步数据库系统实现之我见.pdf └── 生活中的Paxos,原来你我都在使用.pdf └── programming ├── CC++ Volatile关键词剖析.pdf ├── CPU Cache Coherence and Memory Consistency.pdf ├── CPU架构浅析.pdf ├── Programming_开发-运维-开发,一路走来的收获与感悟.pdf ├── readme.md ├── 排队论及其应用浅析.pdf ├── 硬件体系架构浅析.pdf └── 高性能CC++系统性能优化 从理论到实践.pdf /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedengcheng/tech/HEAD/README.md -------------------------------------------------------------------------------- /database/AliSQL/20170724 AliSQL 引领开源技术变革之路.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedengcheng/tech/HEAD/database/AliSQL/20170724 AliSQL 引领开源技术变革之路.pdf -------------------------------------------------------------------------------- /database/AliSQL/AliSQL breakthrough for the future Percona live 2017(V3).pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedengcheng/tech/HEAD/database/AliSQL/AliSQL breakthrough for the future Percona live 2017(V3).pdf -------------------------------------------------------------------------------- /database/AliSQL/What's new in AliSQL.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedengcheng/tech/HEAD/database/AliSQL/What's new in AliSQL.pdf -------------------------------------------------------------------------------- /database/AliSQL/readme.md: -------------------------------------------------------------------------------- 1 | AliSQL:Alibaba's branch of MySQL 2 | -------------------------------------------------------------------------------- /database/MySQL/Buffer Pool Implementation InnoDB vs Oracle.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedengcheng/tech/HEAD/database/MySQL/Buffer Pool Implementation InnoDB vs Oracle.pdf -------------------------------------------------------------------------------- /database/MySQL/InnoDB Log Block Structure.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedengcheng/tech/HEAD/database/MySQL/InnoDB Log Block Structure.jpg -------------------------------------------------------------------------------- /database/MySQL/InnoDB Transaction Lock and MVCC.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedengcheng/tech/HEAD/database/MySQL/InnoDB Transaction Lock and MVCC.pdf -------------------------------------------------------------------------------- /database/MySQL/InnoDB 日志 回滚段 崩溃恢复实现详解.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedengcheng/tech/HEAD/database/MySQL/InnoDB 日志 回滚段 崩溃恢复实现详解.pdf -------------------------------------------------------------------------------- /database/MySQL/MVCC Oracle vs InnoDB vs PG.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedengcheng/tech/HEAD/database/MySQL/MVCC Oracle vs InnoDB vs PG.pdf -------------------------------------------------------------------------------- /database/MySQL/MySQL 5.6新特性深入剖析——InnoDB引擎.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedengcheng/tech/HEAD/database/MySQL/MySQL 5.6新特性深入剖析——InnoDB引擎.pdf -------------------------------------------------------------------------------- /database/MySQL/MySQL InnoDB 查询优化实现分析.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedengcheng/tech/HEAD/database/MySQL/MySQL InnoDB 查询优化实现分析.pdf -------------------------------------------------------------------------------- /database/MySQL/MySQL InnoDB 源码实现分析.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedengcheng/tech/HEAD/database/MySQL/MySQL InnoDB 源码实现分析.pdf -------------------------------------------------------------------------------- /database/MySQL/MySQL 加锁处理分析.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedengcheng/tech/HEAD/database/MySQL/MySQL 加锁处理分析.pdf -------------------------------------------------------------------------------- /database/MySQL/MySQL 外部XA及其在分布式事务中的应用分析.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedengcheng/tech/HEAD/database/MySQL/MySQL 外部XA及其在分布式事务中的应用分析.pdf -------------------------------------------------------------------------------- /database/MySQL/MySQL查询优化浅析.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedengcheng/tech/HEAD/database/MySQL/MySQL查询优化浅析.pdf -------------------------------------------------------------------------------- /database/MySQL/Mysql InnoDB多版本可见性分析.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedengcheng/tech/HEAD/database/MySQL/Mysql InnoDB多版本可见性分析.pdf -------------------------------------------------------------------------------- /database/MySQL/Oracle RAC资源管理算法与Cache-Fusion实现浅析.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedengcheng/tech/HEAD/database/MySQL/Oracle RAC资源管理算法与Cache-Fusion实现浅析.pdf -------------------------------------------------------------------------------- /database/MySQL/readme.md: -------------------------------------------------------------------------------- 1 | MySQL 2 | -------------------------------------------------------------------------------- /database/MySQL/数据库系统的优化与调优:从理论到实践.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedengcheng/tech/HEAD/database/MySQL/数据库系统的优化与调优:从理论到实践.pdf -------------------------------------------------------------------------------- /database/MySQL/管中窥豹——MySQL(InnoDB)死锁分析之道.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedengcheng/tech/HEAD/database/MySQL/管中窥豹——MySQL(InnoDB)死锁分析之道.pdf -------------------------------------------------------------------------------- /database/RocksDB/MyRocks best practice at Alibaba - percona.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedengcheng/tech/HEAD/database/RocksDB/MyRocks best practice at Alibaba - percona.pdf -------------------------------------------------------------------------------- /database/RocksDB/RocksDB(MyRocks)源码学习—写.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedengcheng/tech/HEAD/database/RocksDB/RocksDB(MyRocks)源码学习—写.pdf -------------------------------------------------------------------------------- /database/RocksDB/RocksDB(MyRocks)源码学习—读.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedengcheng/tech/HEAD/database/RocksDB/RocksDB(MyRocks)源码学习—读.pdf -------------------------------------------------------------------------------- /database/RocksDB/readme.md: -------------------------------------------------------------------------------- 1 | rocksdb 2 | -------------------------------------------------------------------------------- /database/The Case for Learned Index Structures.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedengcheng/tech/HEAD/database/The Case for Learned Index Structures.pdf -------------------------------------------------------------------------------- /database/readme.md: -------------------------------------------------------------------------------- 1 | 数据库技术分享 2 | -------------------------------------------------------------------------------- /distributed/PaxosRaft 分布式一致性算法原理剖析及其在实战中的应用.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedengcheng/tech/HEAD/distributed/PaxosRaft 分布式一致性算法原理剖析及其在实战中的应用.pdf -------------------------------------------------------------------------------- /distributed/readme.md: -------------------------------------------------------------------------------- 1 | 分布式技术分享 2 | -------------------------------------------------------------------------------- /distributed/数据一致性-分区可用性-性能——多副本强同步数据库系统实现之我见.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedengcheng/tech/HEAD/distributed/数据一致性-分区可用性-性能——多副本强同步数据库系统实现之我见.pdf -------------------------------------------------------------------------------- /distributed/生活中的Paxos,原来你我都在使用.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedengcheng/tech/HEAD/distributed/生活中的Paxos,原来你我都在使用.pdf -------------------------------------------------------------------------------- /programming/CC++ Volatile关键词剖析.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedengcheng/tech/HEAD/programming/CC++ Volatile关键词剖析.pdf -------------------------------------------------------------------------------- /programming/CPU Cache Coherence and Memory Consistency.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedengcheng/tech/HEAD/programming/CPU Cache Coherence and Memory Consistency.pdf -------------------------------------------------------------------------------- /programming/CPU架构浅析.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedengcheng/tech/HEAD/programming/CPU架构浅析.pdf -------------------------------------------------------------------------------- /programming/Programming_开发-运维-开发,一路走来的收获与感悟.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedengcheng/tech/HEAD/programming/Programming_开发-运维-开发,一路走来的收获与感悟.pdf -------------------------------------------------------------------------------- /programming/readme.md: -------------------------------------------------------------------------------- 1 | parallel programming,hardware and capacity planning 2 | -------------------------------------------------------------------------------- /programming/排队论及其应用浅析.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedengcheng/tech/HEAD/programming/排队论及其应用浅析.pdf -------------------------------------------------------------------------------- /programming/硬件体系架构浅析.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedengcheng/tech/HEAD/programming/硬件体系架构浅析.pdf -------------------------------------------------------------------------------- /programming/高性能CC++系统性能优化 从理论到实践.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hedengcheng/tech/HEAD/programming/高性能CC++系统性能优化 从理论到实践.pdf --------------------------------------------------------------------------------