Skip to content

Commit

Permalink
更新了部分文档
Browse files Browse the repository at this point in the history
  • Loading branch information
jackfrued committed Jul 12, 2020
1 parent 5e2fda2 commit 9624959
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Day16-20/16-20.Python语言进阶.md
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@
items = items[:]
for i in range(len(items) - 1):
swapped = False
for j in range(i, len(items) - 1 - i):
for j in range(len(items) - 1 - i):
if comp(items[j], items[j + 1]):
items[j], items[j + 1] = items[j + 1], items[j]
swapped = True
Expand All @@ -162,7 +162,7 @@
items = items[:]
for i in range(len(items) - 1):
swapped = False
for j in range(i, len(items) - 1 - i):
for j in range(len(items) - 1 - i):
if comp(items[j], items[j + 1]):
items[j], items[j + 1] = items[j + 1], items[j]
swapped = True
Expand Down
4 changes: 1 addition & 3 deletions Day91-100/95.使用Django开发商业项目.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,7 @@

![](./res/web-application.png)

问题2:描述项目的物理架构。(上图中补充负载均衡(反向代理)服务器、数据库服务器、文件服务器、邮件服务器、缓存服务器、防火墙等,而且每个节点都有可能是多节点构成的集群,如下图所示,架构并不是一开始就是这样,而是逐步演进的)

![](./res/05.django_massive_cluster.png)
问题2:描述项目的物理架构。(上图中补充负载均衡(反向代理)服务器、数据库服务器、文件服务器、邮件服务器、缓存服务器、防火墙等,而且每个节点都有可能是多节点构成的集群。当然,架构都是根据业务的需要一步步演进而不是一蹴而就的。)

问题3:描述Django项目的工作流程。(如下图所示)

Expand Down

0 comments on commit 9624959

Please sign in to comment.