Skip to content
This repository was archived by the owner on Sep 13, 2022. It is now read-only.

Commit 968b991

Browse files
committed
review fix
1 parent 81421c8 commit 968b991

File tree

2 files changed

+8
-7
lines changed

2 files changed

+8
-7
lines changed

zh/_index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ summary: 为开发者提供 TiDB 中文版开发指南。
7777
- [分页的最佳实践](tidb-database-development-specification/best-practices-for-paging.md)
7878
- [唯一序列号生成方案](tidb-database-development-specification/unique-serial-number-generation-scheme.md)
7979
- [流程规范](tidb-database-development-specification/process-specification.md)
80-
- [TiDB 区块链大整数最佳实践](tidb-database-development-specification/best-practice-in-using-bigint-data-type-for-blockchain-industry.md)
80+
- [TiDB 大整数最佳实践](tidb-database-development-specification/best-practice-in-using-bigint-data-type.md)
8181

8282
</NavColumn>
8383

zh/tidb-database-development-specification/best-practice-in-using-bigint-data-type-for-blockchain-industry.md

+7-6
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
11
---
2-
title: TiDB 区块链大整数最佳实践
3-
summary: 介绍 区块链大整数 在 TiDB 中的应用
2+
title: TiDB 大整数最佳实践
3+
summary: 介绍 大整数 在 TiDB 中的应用
44
---
55

6-
# TiDB 区块链大整数最佳实践
6+
# TiDB 大整数最佳实践
77

8-
## 区块链大整数
8+
## 大整数
99

10-
现在大部分程序语言直接支持 64 bit 的内置类型,即直接支持相关运算。而超过 64 bit 的的整数,需要自己来实现。
11-
大整数是 区块链 的很重要的组成部分。比如用大整数来标识基础数据类型,如 账号、地址、交易 hash、区块 hash;比如有许多大整数计算的算法,比如 merkerl,pow 等。 所以区块链应用场景,一般来说,大整数支持是必须的。
10+
现在大部分程序语言直接支持 64 bit 的内置类型,即直接支持相关运算。而 `大整数` 是超过 64 bit 的整数,一般是需要自己来实现。
11+
12+
有些场景,`大整数`是必需品(比如 **区块链** 应用,大整数是基础)。我们 TiDB 客户也有大整数的需求,这里根据几个成功案例,总结大整数的解决方案。
1213

1314
## TiDB 大整数 解决方案
1415

0 commit comments

Comments
 (0)