forked from vitessio/website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.toml
151 lines (119 loc) · 5.17 KB
/
config.toml
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
baseURL = "https://vitess.io"
canonifyurls = true
disableKinds = ["taxonomy", "taxonomyTerm"]
enableGitInfo = true
googleAnalytics = "G-JWT03RNV4P"
enableRobotsTXT = true
# Syntax highlighting settings
pygmentsCodeFences = true
pygmentsUseClasses = false
pygmentsStyle = "fruity"
# Versions (folder-based)
[params.versions]
current = "19.0"
next = "20.0"
# end Versions
[params.assets]
js = ["app"]
fontawesomeversion = "6.1.2"
[params.social]
github = "vitessio/vitess"
twitter = "vitessio"
slack = "https://vitess.io/slack"
stackoverflow = "vitess"
[params.blog]
subtitle = "Updates and insights from the **Vitess** team."
[sitemap]
changefreq = "monthly"
filename = "sitemap.xml"
priority = 0.5
# Language settings
DefaultContentLanguage = "en"
defaultContentLanguageInSubdir = true
disableLanguages = ["zh"]
# English
[languages.en]
title = "Vitess"
contentDir = "content/en"
languageName = "English"
weight = 1
[languages.en.params]
description = "Scalable. Reliable. MySQL-compatible. Cloud-native. Database."
# Chinese
[languages.zh]
title = "Vitess"
contentDir = "content/zh"
languageName = "中文 Chinese"
weight = 2
[languages.zh.params]
description = "Vitess是用于部署、扩展和管理大型MySQL实例集群的数据库解决方案。"
language_alternatives = ["en"]
# Features (English)
[[languages.en.params.features]]
title = "Scalability"
description = "Vitess combines many important MySQL features with the scalability of a NoSQL database. Its built-in sharding features let you grow your database without adding sharding logic to your application."
icon = "cubes"
[[languages.en.params.features]]
title = "Performance"
description = "Vitess automatically rewrites queries that hurt database performance. It also uses caching mechanisms to mediate queries and prevent duplicate queries from simultaneously reaching your database. Performance is monitored through nightly <a href='https://benchmark.vitess.io'>benchmarks</a>."
icon = "fighter-jet"
[[languages.en.params.features]]
title = "Manageability"
description = "Vitess automatically handles functions like failovers and backups. It uses a topology server to track and administer servers, letting your application be blissfully ignorant of database topology."
icon = "tachometer-alt"
[[languages.en.params.features]]
title = "Connection pooling"
description = "Vitess eliminates the high-memory overhead of MySQL connections. Vitess servers easily handle thousands of connections at once."
icon = "share-alt"
[[languages.en.params.features]]
title = "Shard management"
description = "MySQL doesn't natively support sharding, but you will likely need it as your database grows. Vitess saves you from having to add sharding logic to your application. It also enables live resharding with minimal read-only downtime."
icon = "object-ungroup"
[[languages.en.params.features]]
title = "Workflow"
description = "Vitess keeps track of all of the metadata about your cluster configuration so that the cluster view is always up-to-date and consistent for different clients."
icon = "magic"
# Features (Chinese)
[[languages.zh.params.features]]
title = "扩展性"
description = "Vitess集Mysql数据库的很多重要特性和NoSQL数据库的可扩展性于一体。其内建拆分分片功能使您能够对您的MySQL数据库集群无限水平扩展,同时无需为应用添加分片逻辑。"
icon = "cubes"
[[languages.zh.params.features]]
title = "性能"
description = "Vitess自动重写对数据库性能有损害的查询。它还使用缓存机制来调解查询,并防止重复查询同时到达您的数据库。通過每夜的<a href='https://benchmark.vitess.io'>基準</a>來監控性能表現。"
icon = "fighter-jet"
[[languages.zh.params.features]]
title = "管理"
description = "Vitess可以支持自动处理主故障转移和备份等功能。它使用分布式元数据服务来跟踪和管理服务器,使您的应用程序无需关心数据库拓扑变化。"
icon = "tachometer-alt"
[[languages.zh.params.features]]
title = "连接池"
description = "Vitess避免了MySQL连接的高内存开销。 Vitess服务器轻松地一次处理数千个连接。"
icon = "share-alt"
[[languages.zh.params.features]]
title = "分片管理"
description = "MySQL本身并不提供拆分分片功能,但是您的业务数据量增大到一定程度是您是需要增加集群的。Vitess提供在线拆分功能,只需要很少的时间就完成新集群的切换,无需您在应用程序中添加任何拆分逻辑。"
icon = "object-ungroup"
[[languages.zh.params.features]]
title = "工作流"
description = "Vitess会跟踪有关集群配置的所有元数据,以便集群拓扑始终是最新的,对不同的客户端保持一致。"
icon = "magic"
[markup.goldmark.renderer]
unsafe = true
[markup.goldmark.extensions]
typographer = false
[mediaTypes]
"text/netlify" = { }
[outputFormats.REDIRECTS]
mediaType = "text/netlify"
baseName = "_redirects"
notAlternative = true
[outputs]
home = [ "HTML", "REDIRECTS", "RSS", "Lunr" ]
[outputFormats.Lunr]
baseName = "index"
isPlainText = true
mediaType = "application/json"
notAlternative = true
[params.lunr]
vars = ["title", "summary", "date", "publishdate", "expirydate", "permalink"]