2022-06-02 23:22:04 +08:00
|
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html lang="en">
|
|
|
|
|
<head>
|
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
|
<title>DDIA 逐章精读</title>
|
|
|
|
|
<meta name="keywords" content="设计数据密集型应用 DDIA 数据库"/>
|
|
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
|
|
|
|
|
<meta name="description" content="在理解英文原文的基础上,结合我的一些工作经验,进行一些相应扩展,并参考 github 上 Vonng 的中文翻译版,对每一章用中文重新组织,作为每次分享的文字稿,在此集结为一本开源小册,希望可以对有需要的同学有所帮助,水平所限,难免疏漏,如发现有任何有误之处,欢迎提 issue 和 PR。">
|
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0">
|
|
|
|
|
<link rel="stylesheet" href="js/vue.css" title="vue"/>
|
2023-11-09 19:18:58 +08:00
|
|
|
|
<script src="https://unpkg.com/@waline/client@v2/dist/waline.js"></script>
|
2023-11-09 21:47:40 +08:00
|
|
|
|
<link rel="stylesheet" href="css/waline.css"/>
|
2022-06-04 09:21:55 +08:00
|
|
|
|
<script>
|
|
|
|
|
var _hmt = _hmt || [];
|
|
|
|
|
(function() {
|
|
|
|
|
var hm = document.createElement("script");
|
|
|
|
|
hm.src = "https://hm.baidu.com/hm.js?9e46dc21e48bb3056fcb775f11bddbc4";
|
|
|
|
|
var s = document.getElementsByTagName("script")[0];
|
|
|
|
|
s.parentNode.insertBefore(hm, s);
|
|
|
|
|
})();
|
|
|
|
|
</script>
|
2022-06-04 09:31:02 +08:00
|
|
|
|
<!-- Global site tag (gtag.js) - Google Analytics -->
|
2022-08-29 00:00:10 +08:00
|
|
|
|
<script async src="https://www.googletagmanager.com/gtag/js?id=G-MMJ5PY11XY"></script>
|
2022-06-04 09:31:02 +08:00
|
|
|
|
<script>
|
|
|
|
|
window.dataLayer = window.dataLayer || [];
|
|
|
|
|
function gtag(){dataLayer.push(arguments);}
|
|
|
|
|
gtag('js', new Date());
|
|
|
|
|
gtag('config', 'G-MMJ5PY11XY');
|
2022-08-29 00:00:10 +08:00
|
|
|
|
</script>
|
2023-11-09 21:47:40 +08:00
|
|
|
|
|
2022-06-02 23:22:04 +08:00
|
|
|
|
</head>
|
|
|
|
|
<body>
|
|
|
|
|
<div id="app"></div>
|
|
|
|
|
<script>
|
|
|
|
|
window.$docsify = {
|
2023-11-09 19:18:58 +08:00
|
|
|
|
count: {
|
|
|
|
|
language: "chinese", // default:english|chinese
|
|
|
|
|
},
|
|
|
|
|
waline: {
|
|
|
|
|
serverURL: "https://ddia-comments.qtmuniao.com",
|
|
|
|
|
pageview: true,
|
2023-11-09 22:29:42 +08:00
|
|
|
|
requiredMeta: ['nick', 'mail'],
|
|
|
|
|
wordLimit: 1000,
|
|
|
|
|
imageUploader: false,
|
2023-11-09 19:18:58 +08:00
|
|
|
|
},
|
2022-06-02 23:22:04 +08:00
|
|
|
|
name: '《DDIA 逐章精读》',
|
|
|
|
|
repo: 'https://github.com/DistSysCorp/ddia',
|
|
|
|
|
loadSidebar: true,
|
|
|
|
|
subMaxLevel: 2,
|
|
|
|
|
themeColor: '#77AAC2',
|
2022-10-30 22:02:53 +08:00
|
|
|
|
auto2top: true,
|
|
|
|
|
pagination: {
|
|
|
|
|
previousText: "上一章",
|
|
|
|
|
nextText: "下一章",
|
|
|
|
|
crossChapter: true,
|
|
|
|
|
crossChapterText: true,
|
|
|
|
|
},
|
|
|
|
|
plugins: [
|
|
|
|
|
function pageFooter(hook, vm) {
|
|
|
|
|
var footer = [
|
|
|
|
|
'<footer style="text-align: center;">',
|
|
|
|
|
'<span><a href="https://www.qtmuniao.com/">作者:木鸟杂记</a> | </span>',
|
|
|
|
|
'<span><a href="https://mp.weixin.qq.com/mp/appmsgalbum?__biz=Mzg5NTcxNzY2OQ==&action=getalbum&album_id=2164896217070206977&scene=126&devicetype=iOS15.4&version=18001d33&lang=zh_CN&nettype=WIFI&ascene=59&session_us=gh_80636260f9f9&fontScale=106&wx_header=3">公众号</a> | </span>',
|
2024-03-03 16:56:44 +08:00
|
|
|
|
'<span><a href="https://distdb.org/">分布式论坛</a> | </span>',
|
2023-03-01 00:13:00 +08:00
|
|
|
|
'<span><a href="https://xiaobot.net/p/system-thinking">系统技术专栏</a></span>',
|
2022-10-30 22:02:53 +08:00
|
|
|
|
'</footer>',
|
|
|
|
|
].join('');
|
|
|
|
|
|
|
|
|
|
hook.afterEach(function (html) {
|
|
|
|
|
return html + footer;
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
],
|
2022-06-02 23:22:04 +08:00
|
|
|
|
}
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<script src="js/docsify.min.js"></script>
|
|
|
|
|
<script src="js/search.min.js"></script>
|
2022-10-30 22:02:53 +08:00
|
|
|
|
<script src="js/docsify-pagination.min.js"></script>
|
2023-11-09 19:18:58 +08:00
|
|
|
|
<script src="https://unpkg.com/docsify-waline@2/docsify-waline.min.js"></script>
|
2022-06-02 23:22:04 +08:00
|
|
|
|
</body>
|
|
|
|
|
</html>
|