Skip to content

Commit 9cb11fe

Browse files
committed
数据库内容修改合入
1 parent e9c512a commit 9cb11fe

23 files changed

+1787
-25
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,5 @@ node_modules/
2323
docs/
2424
md/about/me/about-todolist.md
2525
.vuepress/public/_images/images/
26-
.vuepress/components/
26+
.vuepress/components/
27+
output/

.vuepress/config/function.js

Lines changed: 73 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,10 @@ function genSidebar4Cplusplus() {
4040
"basic/c++-basic-use.md",
4141
"basic/c++-basic-oop.md",
4242
"basic/c++-basic-macro-definition.md",
43-
"basic/c++-basic-learn-route.md"
43+
"basic/c++-basic-learn-route.md",
44+
"basic/c++-basic-function.md",
45+
"basic/c++-basic-keyword.md",
46+
"basic/c++-basic-syntactic-sugar.md"
4447
]
4548
},
4649
{
@@ -55,7 +58,8 @@ function genSidebar4Cplusplus() {
5558
"function/c++-function-structUse.md",
5659
"function/c++-function-typedefUse.md",
5760
"function/c++-function-va_listFun.md",
58-
"function/c++-function-ptr.md"
61+
"function/c++-function-ptr.md",
62+
"function/c++-function-close.md"
5963
]
6064
},
6165
{
@@ -137,6 +141,17 @@ function genSidebar4Database() {
137141
"mysql/basic/mysql-basic-datatype.md",
138142
"mysql/basic/mysql-basic-view.md",
139143
"mysql/basic/mysql-basic-procedure.md",
144+
"mysql/basic/mysql-basic-procedure.md",
145+
"mysql/basic/mysql-basic-procedure.md",
146+
"mysql/basic/mysql-basic-cursor.md",
147+
"mysql/basic/mysql-basic-store-procedure.md",
148+
"mysql/basic/mysql-basic-tips.md",
149+
"mysql/basic/mysql-basic-use.md",
150+
"mysql/basic/mysql-basic-view.md",
151+
"mysql/basic/mysql-cond-judge.md",
152+
"mysql/basic/mysql-group-query.md",
153+
"mysql/basic/mysql-join-query.md",
154+
"mysql/basic/mysql-sub-query.md",
140155
"mysql/advance/mysql-advance-store-engine.md",
141156
"mysql/advance/mysql-advance-innodb.md",
142157
"mysql/advance/mysql-advance-index-basic.md",
@@ -148,6 +163,9 @@ function genSidebar4Database() {
148163
"mysql/advance/mysql-advance-trigger.md",
149164
"mysql/advance/mysql-advance-transaction.md",
150165
"mysql/advance/mysql-advance-manage.md",
166+
"mysql/advance/mysql-advance-db-devide.md",
167+
"mysql/advance/mysql-advance-index-design.md",
168+
"mysql/advance/mysql-advance-performance-opt-two.md",
151169
"mysql/operation/mysql-operation-log.md",
152170
"mysql/operation/mysql-operation-master-slave.md",
153171
"mysql/operation/mysql-operation-db-devide.md",
@@ -164,6 +182,7 @@ function genSidebar4Database() {
164182
children: [
165183
"redis/basic/redis-basic-concept.md",
166184
"redis/basic/redis-basic-command.md",
185+
"redis/basic/redis-basic-application.md",
167186
"redis/advance/redis-advance-persistence.md",
168187
"redis/advance/redis-advance-transaction-operation.md",
169188
"redis/advance/redis-advance-delete-policy.md",
@@ -232,6 +251,7 @@ function genSidebar4Program() {
232251
"data-structure/data-structure-tree-balance.md",
233252
"data-structure/data-structure-tree-redblack.md",
234253
"data-structure/data-structure-tree-trie.md",
254+
"data-structure/data-structure-tree-hafman.md",
235255
"data-structure/data-structure-graph-overview.md",
236256
"data-structure/data-structure-graph-bfs-dfs.md",
237257
"data-structure/data-structure-use.md",
@@ -503,6 +523,27 @@ function genSidebar4microServices() {
503523
"middleware/kong/kong-plugin.md",
504524
"middleware/kong/kong-install-use.md",
505525
]
526+
},
527+
{
528+
title: "中间件 - RocketMQ - 消息队列",
529+
collapsable: false,
530+
sidebarDepth: 0,
531+
children: [
532+
"middleware/rocketmq/rocketmq-basic.md",
533+
"middleware/rocketmq/rocketmq-broker-cluster.md",
534+
"middleware/rocketmq/rocketmq-msg-consume.md",
535+
"middleware/rocketmq/rocketmq-msg-filter.md",
536+
"middleware/rocketmq/rocketmq-msg-send.md",
537+
"middleware/rocketmq/rocketmq-msg-subscribe.md",
538+
"middleware/rocketmq/rocketmq-namesrv.md",
539+
"middleware/rocketmq/rocketmq-order-msg.md",
540+
"middleware/rocketmq/rocketmq-problem.md",
541+
"middleware/rocketmq/rocketmq-protocol.md",
542+
"middleware/rocketmq/rocketmq-queue.md",
543+
"middleware/rocketmq/rocketmq-rocketmq-kafka.md",
544+
"middleware/rocketmq/rocketmq-store.md",
545+
"middleware/rocketmq/rocketmq-zero-cpoy.md
546+
]
506547
}
507548
];
508549

@@ -579,6 +620,7 @@ function genSidebar4method() {
579620
"arch-principle/arch-principle-anemia-model.md",
580621
"arch-principle/arch-principle-ddd.md",
581622
"arch-principle/arch-principle-arch-develop.md",
623+
"arch-principle/arch-principle-solid.md",
582624
]
583625
},
584626
{
@@ -681,7 +723,25 @@ function genSidebar4Devops() {
681723
children: [
682724
"tools/tools-docker.md",
683725
"tools/tools-gcc.md",
684-
"tools/tools-gdb.md"
726+
"tools/tools-gdb.md",
727+
"tools/tools-cmake-install.md",
728+
"tools/tools-cmake.md",
729+
"tools/tools-conan.md",
730+
"tools/tools-curl.md",
731+
"tools/tools-gcc-warning-opt.md",
732+
"tools/tools-install.md",
733+
"tools/tools-vscode-plugin.md"
734+
]
735+
},
736+
{
737+
title: "流水线构建 - CI",
738+
collapsable: false,
739+
sidebarDepth: 0,
740+
children: [
741+
"ci/ci-base.md",
742+
"ci/ci-deployment.md",
743+
"ci/ci-local-repository.md",
744+
"ci/ci-remote-repository.md"
685745
]
686746
},
687747
{
@@ -809,6 +869,8 @@ function genSidebar4project() {
809869
"develop/develop-process.md",
810870
"develop/develop-opt.md",
811871
"develop/develop-notice.md",
872+
"develop/develop-use.md",
873+
"develop/develop-version.md",
812874
"develop/uml/develop-uml.md",
813875
]
814876
},
@@ -864,6 +926,7 @@ function genSidebar4booknote() {
864926
"refactor/refactor-chapter-1.md",
865927
"refactor/refactor-chapter-2.md",
866928
"refactor/refactor-chapter-3.md",
929+
"refactor/refactor-chapter-4.md",
867930
"refactor/refactor-chapter-5.md",
868931
"refactor/refactor-chapter-6.md",
869932
"refactor/refactor-chapter-7.md",
@@ -1055,6 +1118,7 @@ function genSidebar4interview() {
10551118
"code/question-routine/question-routine-binsearch.md",
10561119
"code/question-routine/question-routine-dfs.md",
10571120
"code/question-routine/question-routine-dp.md",
1121+
"code/question-routine/question-routine-heap.md",
10581122
//"code/question-routine/question-routine-graph.md",
10591123
"code/question-routine/question-routine-hashmap.md",
10601124
"code/question-routine/question-routine-list.md",
@@ -1087,7 +1151,7 @@ function genSidebar4Article() {
10871151
collapsable: false,
10881152
sidebarDepth: 0,
10891153
children: [
1090-
"article-overview.md",
1154+
"article-recommend-overview.md",
10911155
"concurrent/article-concurrent-lock.md"
10921156
]
10931157
},
@@ -1122,6 +1186,8 @@ function genSidebar4Article() {
11221186
"knowledge/article-knowledge-time.md",
11231187
"knowledge/article-knowledge-vm-bm.md",
11241188
"knowledge/article-knowledge-loadbalance.md",
1189+
"knowledge/article-knowledge-config-file.md",
1190+
"knowledge/article-knowledge-harddisk.md",
11251191
]
11261192
},
11271193
{
@@ -1132,7 +1198,8 @@ function genSidebar4Article() {
11321198
"problem/article-problem-top.md",
11331199
"problem/article-problem-pstack.md",
11341200
"problem/article-problem-cache-update.md",
1135-
"problem/article-problem-three-high.md"
1201+
"problem/article-problem-three-high.md",
1202+
"problem/article-problem-iptables.md"
11361203
]
11371204
}
11381205
];
@@ -1173,6 +1240,7 @@ function genSidebar4dailyUse() {
11731240
sidebarDepth: 0,
11741241
children: [
11751242
"tools/daily-use-tools-overview.md",
1243+
"tools/daily-use-tools-introduce.md",
11761244
"tools/daily-use-tools.md"
11771245
]
11781246
}

.vuepress/config/nav.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,8 @@ module.exports =
125125
{ text: 'Apollo', link: '/md/micro-services/middleware/apollo/apollo-basic.md' },
126126
{ text: 'Cat', link: '/md/micro-services/middleware/cat/cat-basic.md' },
127127
{ text: 'Logstash', link: '/md/micro-services/middleware/logstash/logstash-basic.md' },
128-
{ text: 'Kong', link: '/md/micro-services/middleware/kong/kong-basic.md' }
128+
{ text: 'Kong', link: '/md/micro-services/middleware/kong/kong-basic.md' },
129+
{ text: 'Rocketmq', link: '/md/micro-services/middleware/rocketmq/rocketmq-basic.md' }
129130
]
130131
},
131132
]
@@ -195,6 +196,7 @@ module.exports =
195196
{
196197
text: '部署',
197198
items: [
199+
{ text: 'CI', link: '/md/devops/ci/ci-base.md' },
198200
{ text: 'Docker', link: '/md/devops/docker/docker-evolution.md' },
199201
{ text: 'Kubernetes', link: '/md/devops/k8s/k8s-concept.md' },
200202
{ text: 'Service Mesh Istio', link: '/md/devops/istio/istio-basic.md' },
203 KB
Loading
43.5 KB
Loading

md/about/me/about-me.md

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,15 @@
1212

1313
![微信公众号](/_images/about/me/微信公众号.png)
1414

15-
* 微信号,可咨询交流问题
15+
* 微信号和微信群,可咨询交流问题
1616

1717
<img src="/_images/about/me/微信号.png" alt="微信公众号" width="380" height="520" />
1818

19+
<img src="/_images/about/me/微信群.png" alt="微信群" width="380" height="520" />
20+
1921
* QQ交流群
2022

21-
<img src="/_images/about/me/QQ交流群.png" alt="微信公众号" width="380" height="520" />
23+
<img src="/_images/about/me/QQ交流群.png" alt="QQ交流群" width="380" height="520" />
2224

2325
# 成长经历
2426

@@ -28,7 +30,4 @@
2830

2931
* 座右铭:成长比成功更重要
3032

31-
一个在编程路上磕磕绊绊的打工人,记录学习过程出中的点点滴滴知识,需要能对大家有所帮助。
32-
33-
考研,求学经历
34-
33+
一个在编程路上磕磕绊绊的打工人,记录学习过程出中的点点滴滴知识,需要能对大家有所帮助。
File renamed without changes.

0 commit comments

Comments
 (0)