-
Notifications
You must be signed in to change notification settings - Fork 484
/
Copy pathzh.ts
185 lines (184 loc) · 4.56 KB
/
zh.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
import type { NavbarConfig } from "@vuepress/theme-default";
export const zh: NavbarConfig = [
{
text: "部署指南",
children: [
"/zh/deploying/introduction.html",
"/zh/deploying/quick-start.html",
"/zh/deploying/deploy.html",
{
text: "共享存储设备的准备",
children: [
"/zh/deploying/storage-aliyun-essd.html",
"/zh/deploying/storage-curvebs.html",
"/zh/deploying/storage-ceph.html",
"/zh/deploying/storage-nbd.html",
],
},
{
text: "文件系统的准备",
children: [
"/zh/deploying/fs-pfs.html",
"/zh/deploying/fs-pfs-curve.html",
],
},
{
text: "部署 PolarDB 数据库",
children: [
"/zh/deploying/db-localfs.html",
"/zh/deploying/db-pfs.html",
"/zh/deploying/db-pfs-curve.html",
],
},
{
text: "更多部署方式",
children: [
"/zh/deploying/deploy-stack.html",
"/zh/deploying/deploy-official.html",
],
},
],
},
{
text: "使用与运维",
link: "/zh/operation/",
children: [
{
text: "日常运维",
children: [
"/zh/operation/backup-and-restore.html",
"/zh/operation/grow-storage.html",
"/zh/operation/scale-out.html",
"/zh/operation/ro-online-promote.html",
],
},
{
text: "性能测试",
children: [
"/zh/operation/tpcc-test.html",
"/zh/operation/tpch-on-px.html",
],
},
],
},
{
text: "内核特性",
children: [
{
text: "文档入口",
link: "/zh/features/v11/",
},
{
text: "PolarDB for PostgreSQL 11",
link: "/zh/features/v11/",
children: [
{
text: "高性能",
link: "/zh/features/v11/performance/",
},
{
text: "高可用",
link: "/zh/features/v11/availability/",
},
{
text: "安全",
link: "/zh/features/v11/security/",
},
{
text: "HTAP",
link: "/zh/features/v11/htap/",
},
],
},
],
},
{
text: "原理解读",
link: "/zh/theory/",
children: [
{
text: "PolarDB for PostgreSQL",
children: [
"/zh/theory/arch-overview.html",
"/zh/theory/arch-htap.html",
"/zh/theory/buffer-management.html",
"/zh/theory/ddl-synchronization.html",
"/zh/theory/logindex.html",
],
},
{
text: "PostgreSQL",
children: [
"/zh/theory/analyze.html",
"/zh/theory/polar-sequence-tech.html",
],
},
],
},
{
text: "应用实践",
link: "/zh/practice/",
children: [
{
text: "最佳实践",
children: [
"/zh/practice/brin.html",
"/zh/practice/spgist.html",
"/zh/practice/vector.html",
"/zh/practice/parray.html",
"/zh/practice/gin.html",
"/zh/practice/rum.html",
"/zh/practice/bloom.html",
"/zh/practice/pg_trgm.html",
"/zh/practice/age.html",
"/zh/practice/madlib.html",
"/zh/practice/pg_jieba.html",
"/zh/practice/rb.html",
"/zh/practice/hll.html",
"/zh/practice/imgsmlr.html",
"/zh/practice/similarity.html",
"/zh/practice/smlar.html",
"/zh/practice/rdkit.html",
"/zh/practice/tsdb.html",
"/zh/practice/postgis.html",
"/zh/practice/postgis_1.html",
"/zh/practice/postgis_2.html",
"/zh/practice/pgrouting.html",
"/zh/practice/pointcloud.html",
"/zh/practice/pgcat.html",
"/zh/practice/pgpool.html",
],
},
],
},
{
text: "上手开发",
link: "/zh/development/",
children: [
"/zh/development/dev-on-docker.html",
"/zh/development/customize-dev-env.html",
],
},
{
text: "参与社区",
link: "/zh/contributing/",
children: [
{
text: "行为准则",
link: "/zh/contributing/code-of-conduct.html",
},
{
text: "贡献文档",
link: "/zh/contributing/contributing-polardb-docs.html",
},
{
text: "贡献代码",
link: "/zh/contributing/contributing-polardb-kernel.html",
},
{
text: "编码风格",
link: "/zh/contributing/coding-style.html",
},
],
},
];