我正在使用MessagePack for CLI
(https://github.com/msgpack/msgpack-cli)库,我想知道,是否可以禁用整数压缩。
例如:
// The following collection
object[] { (Int32)10, (Int32)100, (Int32)1000 };
// will look like this after unpacking
MessagePackObject[] { (Byte)10, (Byte)100, (Int16)1000 }
这迫使我明确转换集合中的每个项目,以便将其强制转换回int[]
,这非常耗时。
答案 0 :(得分:0)
直接使用固定大小的类型:
msgpack::sbuffer buffer;
msgpack::packer<msgpack::sbuffer> pk(&buffer);
msgpack::type::fix_uint32 code(0x00);
msgpack::type::fix_uint32 type(123);
pk.pack(code);
pk.pack(type);