1
0
mirror of https://github.com/fumiama/fumidb.git synced 2026-06-05 08:40:30 +08:00

更正README

This commit is contained in:
源文雨
2022-05-01 23:33:00 +08:00
parent 6defee6974
commit 0196070fe0
3 changed files with 5 additions and 7 deletions

View File

@@ -19,14 +19,14 @@
### 类型列表
| 类型代号 | 类型 | 存储方式 |
| --- | --- | --- |
| 6 | string | 下一个哈希相同的数据项的指针+该长度的数据(字节数组) |
| 6 | string | 下一个哈希相同的数据项的指针+uint32长度+该长度的数据(字节数组) |
## 二进制数据块
> 二进制数据块为定长不超过uint64的不参与索引的字节数组。
### 类型列表
| 类型代号 | 类型 | 存储方式 |
| --- | --- | --- |
| 7 | binary | 直接存储数据(字节数组) |
| 7 | binary | uint64长度+直接存储数据(字节数组) |
## 类型修饰符
> 类型修饰符占据类型代号的高2位通过或运算与基础代号结合