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
+51 -8
View File
@@ -1,14 +1,57 @@
PostgreSQL Database Management System
=====================================
# PostgreSQL
This directory contains the source code distribution of the PostgreSQL database management system.
PostgreSQL 是一个强大的开源关系型数据库管理系统(RDBMS),具有许多先进的功能和广泛的用途。它以可靠性、扩展性和高级功能而闻名,适用于各种不同的应用场景。
PostgreSQL is an advanced object-relational database management system that supports an extended subset of the SQL standard, including transactions, foreign keys, subqueries, triggers, user-defined types and functions. This distribution also contains C language bindings.
## 主要功能:
PostgreSQL has many language interfaces, many of which are listed here:
### 1. 多用户支持
https://www.postgresql.org/download/
PostgreSQL 支持多个用户,每个用户可以有自己的帐户和权限。这使得多个用户可以同时访问和管理数据库,而不会相互干扰。
See the file INSTALL for instructions on how to build and install PostgreSQL. That file also lists supported operating systems and hardware platforms and contains information regarding any other software packages that are required to build or run the PostgreSQL system. Copyright and license information can be found in the file COPYRIGHT. A comprehensive documentation set is included in this distribution; it can be read as described in the installation instructions.
### 2. ACID 遵从
The latest version of this software may be obtained at https://www.postgresql.org/download/. For more information look at our web site located at https://www.postgresql.org/.
PostgreSQL 遵循 ACID(原子性、一致性、隔离性和持久性)属性,确保数据库操作的可靠性和一致性,即使在系统崩溃或故障的情况下也能保持数据的完整性。
### 3. 数据类型支持
PostgreSQL 提供了丰富的内置数据类型,包括整数、浮点数、日期/时间、文本、二进制数据等。此外,它还支持用户自定义数据类型,使其非常灵活。
### 4. 扩展性
PostgreSQL 允许用户轻松地添加新的函数、操作符、聚合函数和数据类型,以满足特定应用程序的需求。这种灵活性使得它适用于各种不同的数据处理任务。
### 5. 外键支持
PostgreSQL 支持外键,可以定义表之间的关系,确保数据的引用完整性,防止不一致的数据关联。
### 6. 多版本并发控制
PostgreSQL 使用多版本并发控制(MVCC)来处理并发访问,允许多个事务同时访问数据库,而不会导致数据冲突或锁定。
### 7. 高级查询优化
PostgreSQL 提供了强大的查询优化器,可以优化复杂的查询,以提高性能并降低查询时间。
### 8. 备份和恢复
PostgreSQL 支持在线备份和恢复操作,可以轻松创建数据库备份,并在需要时恢复数据,确保数据的可用性和安全性。
### 9. 外部数据源访问
PostgreSQL 允许访问外部数据源,如其他数据库、文件和Web服务,以便将外部数据与数据库中的数据集成。
### 10. 安全性
PostgreSQL 提供了丰富的安全功能,包括访问控制、SSL支持、数据加密和审计功能,以确保数据库的安全性。
### 11. JSON 和 JSONB 数据类型
PostgreSQL 支持存储和查询 JSON 数据,包括 JSON 和二进制 JSON(JSONB)数据类型,使其成为处理半结构化数据的理想选择。
### 12. 复制和高可用性
PostgreSQL 支持流复制和逻辑复制,以实现数据复制和高可用性配置,确保系统的可用性和容错性。
### 13. 社区支持和扩展
PostgreSQL 拥有活跃的社区,提供了大量的扩展和插件,以满足不同行业和应用程序的需求。