From caa58d35a50457eb57790e4399e620e316c94ce8 Mon Sep 17 00:00:00 2001 From: zcp100_zcp100 Date: Thu, 9 Feb 2023 13:59:31 +0800 Subject: [PATCH] =?UTF-8?q?fix(mogdb):=E4=BF=AE=E6=94=B9=E5=B9=B6=E5=8F=91?= =?UTF-8?q?=E8=BF=9E=E6=8E=A5=E6=95=B0+=E4=BF=AE=E6=94=B9footer=E6=96=87?= =?UTF-8?q?=E4=BB=B6=E7=9A=84=E6=97=A5=E6=9C=9F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- product/en/docs-mogdb/v3.1/about-mogdb/usage-limitations.md | 2 +- product/zh/docs-mogdb/v3.1/about-mogdb/usage-limitations.md | 6 +++--- src/components/footer.js | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/product/en/docs-mogdb/v3.1/about-mogdb/usage-limitations.md b/product/en/docs-mogdb/v3.1/about-mogdb/usage-limitations.md index 59515620..f432224d 100644 --- a/product/en/docs-mogdb/v3.1/about-mogdb/usage-limitations.md +++ b/product/en/docs-mogdb/v3.1/about-mogdb/usage-limitations.md @@ -20,7 +20,7 @@ This document describes the common usage limitations of MogDB. | Number of indexes in a single table | Unlimited | | Number of columns in a compound index | 32 | | Number of constraints in a single table | Unlimited | -| Number of concurrent connections | 10000 | +| Number of concurrent connections | 262143 | | Number of partitions in a partition table | 1048575 | | Size of a single partition | 32 TB | | Number of rows in a single partition | 255 | diff --git a/product/zh/docs-mogdb/v3.1/about-mogdb/usage-limitations.md b/product/zh/docs-mogdb/v3.1/about-mogdb/usage-limitations.md index 83b3f61a..ca8b9e32 100644 --- a/product/zh/docs-mogdb/v3.1/about-mogdb/usage-limitations.md +++ b/product/zh/docs-mogdb/v3.1/about-mogdb/usage-limitations.md @@ -15,13 +15,13 @@ MogDB 具有如下使用限制: | 单表大小 | 32TB | | 单行数据大小 | 1GB | | 每条记录单个字段的大小 | 1GB | -| 单表记录数 | 281474976710656(248) | +| 单表记录数 | 281474976710656(248) | | 单表列数 | 250~1600(随字段类型不同会有变化) | | 单表中的索引个数 | 无限制 | | 复合索引包含列数 | 32 | | 单表约束个数 | 无限制 | -| 并发连接数 | 10000 | +| 并发连接数 | 262143 | | 分区表的分区个数 | 1048575 | | 分区表的单个分区大小 | 32TB | -| 分区表的单个分区记录数 | 255 | +| 分区表的单个分区记录数 | 255 | | SQL文本最大长度 | 1048576字节(1MB) | \ No newline at end of file diff --git a/src/components/footer.js b/src/components/footer.js index b7f37cb3..75acfb3a 100644 --- a/src/components/footer.js +++ b/src/components/footer.js @@ -6,7 +6,7 @@ import React from "react" const Footer = () => { return ( ) } -- Gitee