Skip to content

Commit 208f523

Browse files
authored
Merge pull request #7 from leancloud/feat-close-mongo-es
feat: 下架MongoDB和ES文档
2 parents fec258f + 5d7c6f8 commit 208f523

File tree

13 files changed

+7
-473
lines changed

13 files changed

+7
-473
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
云引擎是一个托管后端程序的平台,开发者可以将 Web 应用(例如一个网站),或者 Node.js、Python、Java、PHP、.NET、Go、C++ 等语言的后端程序(例如一个 RESTful API 服务器)部署到云引擎上,云引擎会自动从源代码构建出可运行的「版本」,然后将它运行在独立的容器中,同时提供日志和监控、负载均衡、平滑发布、弹性扩容等能力。此外,云引擎还提供了定时任务、域名和证书管理和 Redis、MySQL、MongoDB、Elasticsearch 等多种托管数据库供开发者使用。
1+
云引擎是一个托管后端程序的平台,开发者可以将 Web 应用(例如一个网站),或者 Node.js、Python、Java、PHP、.NET、Go、C++ 等语言的后端程序(例如一个 RESTful API 服务器)部署到云引擎上,云引擎会自动从源代码构建出可运行的「版本」,然后将它运行在独立的容器中,同时提供日志和监控、负载均衡、平滑发布、弹性扩容等能力。此外,云引擎还提供了定时任务、域名和证书管理和 Redis、MySQL 等多种托管数据库供开发者使用。

docs/sdk/engine/database/es.mdx

Lines changed: 0 additions & 134 deletions
This file was deleted.

docs/sdk/engine/database/mongo.mdx

Lines changed: 0 additions & 104 deletions
This file was deleted.

docs/sdk/engine/faq.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ import Path from "/src/docComponents/path";
3535

3636
在此基础上,开发者可以选择在程序内接入云引擎的 SDK,来使用云函数和 Hook 等功能,云函数与 <Conditional brand="tds">[数据存储](/sdk/storage/features)</Conditional><Conditional brand="leancloud">[数据存储](/sdk/storage/overview/)</Conditional> 服务有深度的整合,对于已经在使用数据存储服务的开发会非常方便。
3737

38-
不接入云引擎 SDK 也可以使用云函数以外的所有功能,云引擎也提供了业界广泛使用的 [Redis](/sdk/engine/database/redis/)[MongoDB](/sdk/engine/database/mongo/)[Elasticsearch](/sdk/engine/database/es/) 供开发者存储数据。
38+
不接入云引擎 SDK 也可以使用云函数以外的所有功能,云引擎也提供了业界广泛使用的 [Redis](/sdk/engine/database/redis/)[MySQL](/sdk/engine/database/mysql/) 供开发者存储数据。
3939

4040
## 云函数
4141

docs/sdk/engine/overview.mdx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,7 @@ import { Conditional } from "/src/docComponents/conditional";
4343
| 数据库 | 集群配置 | 集群可用性 | 文档页面 |
4444
| ------------- | ------------------ | ---------------------------------- | --------------------------------------------------------- |
4545
| Redis | 主从结构(1M/1S) | 默认高可用,自动切换 | [LeanCache 使用指南](/sdk/engine/database/redis/) |
46-
| MongoDB | 副本集(1P/1S/1A) | 默认高可用,自动切换 | [LeanDB MongoDB 使用指南](/sdk/engine/database/mongo/) |
4746
| MySQL | 主从结构(1M/1S) | 默认高可用,自动切换 | [LeanDB MySQL 使用指南](/sdk/engine/database/mysql/) |
48-
| Elasticsearch | 单节点 / 三个节点 | 默认高可用,自动切换(三个节点时) | [LeanDB Elasticsearch 使用指南](/sdk/engine/database/es/) |
4947

5048
## 更多
5149

docs/sdk/engine/platform.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ import Path from "/src/docComponents/path";
3131

3232
云引擎对应用进程内部几乎没有干预,你可以选用你喜欢的开发框架和第三方组件库、自行组织项目的目录结构。云引擎的负载均衡会转发绑定域名下的所有 HTTP 请求,你可以在应用内使用 Web 框架来自行设计 HTTP API 中的路径、请求和响应的格式。
3333

34-
目前云引擎主要为无状态的 HTTP 服务而优化,不支持在文件系统上持久地存储数据,应用可以将数据存储到 <Conditional brand="tds">[数据存储](/sdk/storage/features)</Conditional><Conditional brand="leancloud">[数据存储](/sdk/storage/overview/)</Conditional> 或 LeanDB 提供的 [Redis](/sdk/engine/database/redis/)[MongoDB](/sdk/engine/database/mongo/)[Elasticsearch](/sdk/engine/database/es/) 中。
34+
目前云引擎主要为无状态的 HTTP 服务而优化,不支持在文件系统上持久地存储数据,应用可以将数据存储到 <Conditional brand="tds">[数据存储](/sdk/storage/features)</Conditional><Conditional brand="leancloud">[数据存储](/sdk/storage/overview/)</Conditional> 或 LeanDB 提供的 [Redis](/sdk/engine/database/redis/)[MySQL](/sdk/engine/database/mysql/) 中。
3535

3636
<p>
3737
要将一个已有的项目关联到云引擎应用,可以使用 <code>{CLI_BINARY} switch</code>:

docs/sdk/start/dashboard-guide.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -740,7 +740,7 @@ mQtjuMF5xk,xPVrHL0W4n
740740

741741
### LeanDB
742742

743-
在 **LeanDB** 页面可以管理 [LeanCache(Redis)](/sdk/engine/database/redis/)[MySQL](/sdk/engine/database/mysql/)、[MongoDB](/sdk/engine/database/mongo/) 实例。
743+
在 **LeanDB** 页面可以管理 [LeanCache(Redis)](/sdk/engine/database/redis/)[MySQL](/sdk/engine/database/mysql/) 实例。
744744

745745
## 即时通讯
746746

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Cloud Engine is a platform that lets you host backends for your applications. If you have web apps or backend programs built with Node.js, Python, Java, PHP, .NET, Go, or C++, you can deploy them to Cloud Engine and it will automatically build runnable _versions_ from the source code and run them in independent containers. Cloud Engine provides capabilities including log viewing, monitoring, load balancing, zero downtime deployment, and autoscaling that you can use out of the box. Additional features provided by Cloud Engine include scheduled tasks, domain and certificate management, and hosted database management systems including Redis, MySQL, MongoDB, and Elasticsearch.
1+
Cloud Engine is a platform that lets you host backends for your applications. If you have web apps or backend programs built with Node.js, Python, Java, PHP, .NET, Go, or C++, you can deploy them to Cloud Engine and it will automatically build runnable _versions_ from the source code and run them in independent containers. Cloud Engine provides capabilities including log viewing, monitoring, load balancing, zero downtime deployment, and autoscaling that you can use out of the box. Additional features provided by Cloud Engine include scheduled tasks, domain and certificate management, and hosted database management systems including Redis and MySQL.

0 commit comments

Comments
 (0)