UBJSON
UBJSON简介
Links
[1] Wiki:https://en.wikipedia.org/wiki/UBJSON
[2] 官网:https://ubjson.org/
Notes
Overview
JSON规范本身完全兼容
数据结构(平均)比压缩JSON小30%
数据类型
[type, 1-byte char]([integer numeric length])([data])具体的数据类型请看:https://ubjson.org/type-reference/
案例
[
null,
true,
false,
4782345193,
153.132,
"ham"
]
[[]
[Z]
[T]
[F]
[l][4782345193]
[d][153.132]
[S][i][3][ham]
[]]{
"post": {
"id": 1137,
"author": "rkalla",
"timestamp": 1364482090592,
"body": "I totally agree!"
}
}
[{]
[i][4][post][{]
[i][2][id][I][1137]
[i][6][author][S][i][5][rkalla]
[i][9][timestamp][L][1364482090592]
[i][4][body][S][i][16][I totally agree!]
[}]
[}]最后更新于
这有帮助吗?