From cf543545289e2b035816009a075003d410f92092 Mon Sep 17 00:00:00 2001 From: chai2010 Date: Fri, 8 Jun 2018 23:14:39 +0800 Subject: [PATCH] =?UTF-8?q?ch6:=20=E5=AE=8C=E5=96=84=E7=9B=AE=E5=BD=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- SUMMARY.md | 24 ++++++++++++------------ ch6-cloud/ch6-00-empty.md | 0 ch6-cloud/ch6-01-cloud.md | 3 +++ ch6-cloud/ch6-02-raft.md | 3 +++ ch6-cloud/ch6-03-hash.md | 3 +++ ch6-cloud/ch6-04-queue.md | 3 +++ ch6-cloud/ch6-05-cache.md | 3 +++ ch6-cloud/ch6-06-etcd.md | 3 +++ ch6-cloud/ch6-07-confd.md | 3 +++ ch6-cloud/ch6-08-lock.md | 3 +++ ch6-cloud/ch6-09-sched.md | 3 +++ ch6-cloud/ch6-10-delay-job.md | 3 +++ ch6-cloud/ch6-11-k8s.md | 3 +++ ch6-cloud/ch6-12-faq.md | 3 +++ 14 files changed, 48 insertions(+), 12 deletions(-) delete mode 100644 ch6-cloud/ch6-00-empty.md create mode 100644 ch6-cloud/ch6-01-cloud.md create mode 100644 ch6-cloud/ch6-02-raft.md create mode 100644 ch6-cloud/ch6-03-hash.md create mode 100644 ch6-cloud/ch6-04-queue.md create mode 100644 ch6-cloud/ch6-05-cache.md create mode 100644 ch6-cloud/ch6-06-etcd.md create mode 100644 ch6-cloud/ch6-07-confd.md create mode 100644 ch6-cloud/ch6-08-lock.md create mode 100644 ch6-cloud/ch6-09-sched.md create mode 100644 ch6-cloud/ch6-10-delay-job.md create mode 100644 ch6-cloud/ch6-11-k8s.md create mode 100644 ch6-cloud/ch6-12-faq.md diff --git a/SUMMARY.md b/SUMMARY.md index 5e18c2f..ff4c39a 100644 --- a/SUMMARY.md +++ b/SUMMARY.md @@ -50,18 +50,18 @@ * [5.8. Layout大型web项目分层](ch5-web/ch5-08-layout-of-web-project.md) * [5.12. Load-balance负载均衡](ch5-web/ch5-12-load-balance.md) * [第六章 分布式系统(TODO)](ch6-cloud/readme.md) - * [6.1. 云上地鼠](ch6-cloud/ch6-01-empty.md) - * [6.2. Raft协议](ch6-cloud/ch6-02-empty.md) - * [6.3. 分布式哈希](ch6-cloud/ch6-03-empty.md) - * [6.4. 队列](ch6-cloud/ch6-04-empty.md) - * [6.5. 分布式缓存](ch6-cloud/ch6-05-empty.md) - * [6.6. etcd](ch6-cloud/ch6-06-empty.md) - * [6.7. confd](ch6-cloud/ch6-07-empty.md) - * [6.8. 分布式锁](ch6-cloud/ch6-08-empty.md) - * [6.9. 分布式任务调度系统](ch6-cloud/ch6-09-empty.md) - * [6.10. 延时任务系统](ch6-cloud/ch6-10-empty.md) - * [6.11. Kubernetes](ch6-cloud/ch6-11-empty.md) - * [6.12. 补充说明](ch6-cloud/ch6-12-empty.md) + * [6.1. 云上地鼠](ch6-cloud/ch6-01-cloud.md) + * [6.2. Raft协议](ch6-cloud/ch6-02-raft.md) + * [6.3. 分布式哈希](ch6-cloud/ch6-03-hash.md) + * [6.4. 分布式队列](ch6-cloud/ch6-04-queue.md) + * [6.5. 分布式缓存](ch6-cloud/ch6-05-cache.md) + * [6.6. etcd](ch6-cloud/ch6-06-etcd.md) + * [6.7. confd](ch6-cloud/ch6-07-confd.md) + * [6.8. 分布式锁](ch6-cloud/ch6-08-lock.md) + * [6.9. 分布式任务调度系统](ch6-cloud/ch6-09-sched.md) + * [6.10. 延时任务系统](ch6-cloud/ch6-10-delay-job.md) + * [6.11. Kubernetes](ch6-cloud/ch6-11-k8s.md) + * [6.12. 补充说明](ch6-cloud/ch6-12-faq.md) * [第七章 Go和ast(TODO)](ch7-ast/readme.md) * [第八章 Go和那些生产力工具(TODO)](ch8-tools/readme.md) * [附录](appendix/readme.md) diff --git a/ch6-cloud/ch6-00-empty.md b/ch6-cloud/ch6-00-empty.md deleted file mode 100644 index e69de29..0000000 diff --git a/ch6-cloud/ch6-01-cloud.md b/ch6-cloud/ch6-01-cloud.md new file mode 100644 index 0000000..98c1722 --- /dev/null +++ b/ch6-cloud/ch6-01-cloud.md @@ -0,0 +1,3 @@ +# 6.1. 云上地鼠 + +TODO diff --git a/ch6-cloud/ch6-02-raft.md b/ch6-cloud/ch6-02-raft.md new file mode 100644 index 0000000..0890385 --- /dev/null +++ b/ch6-cloud/ch6-02-raft.md @@ -0,0 +1,3 @@ +# 6.2. Raft协议 + +TODO diff --git a/ch6-cloud/ch6-03-hash.md b/ch6-cloud/ch6-03-hash.md new file mode 100644 index 0000000..30f685e --- /dev/null +++ b/ch6-cloud/ch6-03-hash.md @@ -0,0 +1,3 @@ +# 6.3. 分布式哈希 + +TODO diff --git a/ch6-cloud/ch6-04-queue.md b/ch6-cloud/ch6-04-queue.md new file mode 100644 index 0000000..cf475fe --- /dev/null +++ b/ch6-cloud/ch6-04-queue.md @@ -0,0 +1,3 @@ +# 6.4. 分布式队列 + +TODO diff --git a/ch6-cloud/ch6-05-cache.md b/ch6-cloud/ch6-05-cache.md new file mode 100644 index 0000000..deee771 --- /dev/null +++ b/ch6-cloud/ch6-05-cache.md @@ -0,0 +1,3 @@ +# 6.5. 分布式缓存 + +TODO diff --git a/ch6-cloud/ch6-06-etcd.md b/ch6-cloud/ch6-06-etcd.md new file mode 100644 index 0000000..5dd9489 --- /dev/null +++ b/ch6-cloud/ch6-06-etcd.md @@ -0,0 +1,3 @@ +# 6.6. etcd + +TODO diff --git a/ch6-cloud/ch6-07-confd.md b/ch6-cloud/ch6-07-confd.md new file mode 100644 index 0000000..bdccf7e --- /dev/null +++ b/ch6-cloud/ch6-07-confd.md @@ -0,0 +1,3 @@ +# 6.7. confd + +TODO diff --git a/ch6-cloud/ch6-08-lock.md b/ch6-cloud/ch6-08-lock.md new file mode 100644 index 0000000..f646cb9 --- /dev/null +++ b/ch6-cloud/ch6-08-lock.md @@ -0,0 +1,3 @@ +# 6.8. 分布式锁 + +TODO diff --git a/ch6-cloud/ch6-09-sched.md b/ch6-cloud/ch6-09-sched.md new file mode 100644 index 0000000..f7bd7b9 --- /dev/null +++ b/ch6-cloud/ch6-09-sched.md @@ -0,0 +1,3 @@ +# 6.9. 分布式任务调度系统 + +TODO diff --git a/ch6-cloud/ch6-10-delay-job.md b/ch6-cloud/ch6-10-delay-job.md new file mode 100644 index 0000000..837da81 --- /dev/null +++ b/ch6-cloud/ch6-10-delay-job.md @@ -0,0 +1,3 @@ +# 6.10. 延时任务系统 + +TODO diff --git a/ch6-cloud/ch6-11-k8s.md b/ch6-cloud/ch6-11-k8s.md new file mode 100644 index 0000000..476a990 --- /dev/null +++ b/ch6-cloud/ch6-11-k8s.md @@ -0,0 +1,3 @@ +# 6.11. Kubernetes + +TODO diff --git a/ch6-cloud/ch6-12-faq.md b/ch6-cloud/ch6-12-faq.md new file mode 100644 index 0000000..8bc80e4 --- /dev/null +++ b/ch6-cloud/ch6-12-faq.md @@ -0,0 +1,3 @@ +# 6.12. 补充说明 + +TODO