feat: 修改应用 README

This commit is contained in:
wanghe-fit2cloud
2023-09-21 16:22:29 +08:00
parent 47375436a2
commit ac9127d0db
69 changed files with 1019 additions and 1746 deletions
+22 -25
View File
@@ -1,44 +1,41 @@
Welcome to MongoDB!
# MongoDB
## Components
MongoDB 是一款流行的NoSQL数据库管理系统,它提供了许多功能,使其成为处理大规模数据和灵活的数据模型的强大工具。
- `mongod` - The database server.
- `mongos` - Sharding router.
- `mongo` - The database shell (uses interactive javascript).
## 主要功能:
## Drivers
### 1. 文档型数据库
Client drivers for most programming languages are available at https://docs.mongodb.com/manual/applications/drivers/. Use the shell (`mongo`) for administrative tasks.
MongoDB 是一个文档型数据库,数据以 BSON(二进制JSON)文档的形式存储。这种数据模型非常灵活,可以容易地处理不同结构的数据,而不需要固定的表结构。
## Bug Reports
### 2. 高度可扩展性
See https://github.com/mongodb/mongo/wiki/Submit-Bug-Reports.
MongoDB支持水平扩展,可以轻松地添加更多的服务器来处理大量数据和高并发请求。它适用于大规模的应用程序和增长型项目。
## Packaging
### 3. 强大的查询语言
Packages are created dynamically by the [buildscripts/packager.py](buildscripts/packager.py) script.
This will generate RPM and Debian packages.
MongoDB提供了丰富的查询语言,支持复杂的查询操作,包括过滤、聚合、排序和地理空间查询等。用户可以轻松地提取所需的数据。
## Learn MongoDB
### 4. 复制和故障转移
Documentation - https://docs.mongodb.com/manual/
Developer Center - https://www.mongodb.com/developer/
MongoDB University - https://learn.mongodb.com
MongoDB支持数据复制,可以创建主-从复制集群以提高数据的可用性和容错性。在主节点故障时,自动选择新的主节点。
## Cloud Hosted MongoDB
### 5. 自动分片
https://www.mongodb.com/cloud/atlas
MongoDB支持数据分片,允许水平拆分数据,以便在多台服务器上存储和处理数据。这有助于提高性能和负载均衡。
## Forums
### 6. 支持索引
- https://community.mongodb.com
MongoDB支持多种索引类型,包括单字段索引、复合索引和地理空间索引。索引可以大幅提高查询性能。
Technical questions about using MongoDB.
### 7. 内置复杂事务
- https://community.mongodb.com/c/server-dev
MongoDB 4.0及更高版本支持多文档事务,允许多个操作在一个事务中执行,确保数据的一致性。
Technical questions about building and developing MongoDB.
### 8. 高级安全性
## LICENSE
MongoDB提供了访问控制、身份验证和加密等高级安全性功能,确保数据的保密性和完整性。
MongoDB is free and the source is available. Versions released prior to October 16, 2018 are published under the AGPL. All versions released after October 16, 2018, including patch fixes for prior versions, are published under the [Server Side Public License (SSPL) v1](LICENSE-Community.txt). See individual files for details.
### 9. 社区支持和生态系统
MongoDB拥有庞大的社区和丰富的生态系统,有大量的工具、驱动程序和扩展可用于不同的开发和运维任务。