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

Commit

Permalink
review fix
Browse files Browse the repository at this point in the history
  • Loading branch information
knull-cn committed Jan 13, 2022
1 parent 81421c8 commit 052036f
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
2 changes: 1 addition & 1 deletion zh/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ summary: 为开发者提供 TiDB 中文版开发指南。
- [分页的最佳实践](tidb-database-development-specification/best-practices-for-paging.md)
- [唯一序列号生成方案](tidb-database-development-specification/unique-serial-number-generation-scheme.md)
- [流程规范](tidb-database-development-specification/process-specification.md)
- [TiDB 区块链大整数最佳实践](tidb-database-development-specification/best-practice-in-using-bigint-data-type-for-blockchain-industry.md)
- [TiDB 大整数最佳实践](tidb-database-development-specification/best-practice-in-using-bigint-data-type.md)

</NavColumn>

Expand Down
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
---
title: TiDB 区块链大整数最佳实践
summary: 介绍 区块链大整数 在 TiDB 中的应用
title: TiDB 大整数最佳实践
summary: 介绍 大整数 在 TiDB 中的应用
---

# TiDB 区块链大整数最佳实践
# TiDB 大整数最佳实践

## 区块链大整数
## 大整数

现在大部分程序语言直接支持 64 bit 的内置类型,即直接支持相关运算。而超过 64 bit 的的整数,需要自己来实现。
大整数是 区块链 的很重要的组成部分。比如用大整数来标识基础数据类型,如 账号、地址、交易 hash、区块 hash;比如有许多大整数计算的算法,比如 merkerl,pow 等。 所以区块链应用场景,一般来说,大整数支持是必须的。
现在大部分程序语言直接支持 64 bit 的内置类型,即直接支持相关运算。而 `大整数` 是超过 64 bit 的整数,一般是需要自己来实现。

有些场景,`大整数`是必需品(比如 **区块链** 应用,大整数是基础)。我们 TiDB 客户也有大整数的需求,这里根据几个成功案例,总结大整数的解决方案。

## TiDB 大整数 解决方案

Expand Down

0 comments on commit 052036f

Please sign in to comment.