forked from vitessio/website
-
Notifications
You must be signed in to change notification settings - Fork 3
/
config.toml
109 lines (88 loc) · 4.49 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
baseURL = "https://vitess.io"
canonifyurls = true
disableKinds = ["taxonomy", "taxonomyTerm"]
# Syntax highlighting settings
pygmentsCodeFences = true
pygmentsUseClasses = false
pygmentsStyle = "fruity"
[params.assets]
js = ["jquery-3.3.1", "jquery-ui-1.12.1", "jquery.tocify-1.9.0", "app"]
fontawesomeversion = "5.7.2"
[params.social]
github = "vitessio/vitess"
twitter = "vitessio"
slack = "https://vitess.slack.com/join/shared_invite/enQtMzIxMDMyMzA0NzA1LTBjYjY1M2I2Yjg5YmY3ODIwOTk0N2M1YzI4Y2ViODdiNmIxMDdiMDM5YWQ1ZTc0YmJhZDdiOTliMGVkNDY4MjM"
stackoverflow = "vitess"
[params.blog]
subtitle = "Updates and insights from the **Vitess** team."
# Language settings
DefaultContentLanguage = "en"
defaultContentLanguageInSubdir = true
disableLanguages = ["zh"]
# English
[languages.en]
title = "Vitess"
contentDir = "content/en"
languageName = "English"
weight = 1
[languages.en.params]
description = "A database clustering system for horizontal scaling of MySQL"
# Chinese
[languages.zh]
title = "Vitess"
contentDir = "content/zh"
languageName = "中文 Chinese"
weight = 2
[languages.zh.params]
description = "A database clustering system for horizontal scaling of 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."
icon = "fighter-jet"
[[languages.en.params.features]]
title = "Manageability"
description = "Vitess automatically handles functions like master failovers and backups. It uses a lock 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 app and 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 = "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.zh.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."
icon = "fighter-jet"
[[languages.zh.params.features]]
title = "Manageability"
description = "Vitess automatically handles functions like master failovers and backups. It uses a lock server to track and administer servers, letting your application be blissfully ignorant of database topology."
icon = "tachometer-alt"
[[languages.zh.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.zh.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 app and also enables live resharding with minimal read-only downtime."
icon = "object-ungroup"
[[languages.zh.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"