taontech / githublog

一个基于github issues的博客系统,实时呈现,零依赖,零代码部署,不用打包不用上线。
4 stars 1 forks source link

messagePack 格式定义 #77

Open taontech opened 1 year ago

taontech commented 1 year ago

https://msgpack.org/index.html

image
Format Support

See MessagePack format spec for further reference.

format name | first byte (in binary) | first byte (in hex) | Supported -- | -- | -- | -- positive fixint | 0xxxxxxx | 0x00 - 0x7f | Yes fixmap | 1000xxxx | 0x80 - 0x8f | Yes fixarray | 1001xxxx | 0x90 - 0x9f | Yes fixstr | 101xxxxx | 0xa0 - 0xbf | Yes nil | 11000000 | 0xc0 | Yes (never used) | 11000001 | 0xc1 | Yes false | 11000010 | 0xc2 | Yes true | 11000011 | 0xc3 | Yes bin 8 | 11000100 | 0xc4 | No bin 16 | 11000101 | 0xc5 | No bin 32 | 11000110 | 0xc6 | No ext 8 | 11000111 | 0xc7 | No ext 16 | 11001000 | 0xc8 | No ext 32 | 11001001 | 0xc9 | No float 32 | 11001010 | 0xca | Yes float 64 | 11001011 | 0xcb | Yes uint 8 | 11001100 | 0xcc | Yes uint 16 | 11001101 | 0xcd | Yes uint 32 | 11001110 | 0xce | Yes uint 64 | 11001111 | 0xcf | Yes int 8 | 11010000 | 0xd0 | Yes int 16 | 11010001 | 0xd1 | Yes int 32 | 11010010 | 0xd2 | Yes int 64 | 11010011 | 0xd3 | Yes fixext 1 | 11010100 | 0xd4 | No fixext 2 | 11010101 | 0xd5 | No fixext 4 | 11010110 | 0xd6 | No fixext 8 | 11010111 | 0xd7 | No fixext 16 | 11011000 | 0xd8 | No str 8 | 11011001 | 0xd9 | Yes str 16 | 11011010 | 0xda | Yes str 32 | 11011011 | 0xdb | Yes array 16 | 11011100 | 0xdc | Yes array 32 | 11011101 | 0xdd | Yes map 16 | 11011110 | 0xde | Yes map 32 | 11011111 | 0xdf | Yes negative fixint | 111xxxxx | 0xe0 - 0xff | Yes