I am using the MessagePack for CLI
(https://github.com/msgpack/msgpack-cli) library and I am wondering, if it's possible to disable the integer compression.
For example:
// The following collection
object[] { (Int32)10, (Int32)100, (Int32)1000 };
// will look like this after unpacking
MessagePackObject[] { (Byte)10, (Byte)100, (Int16)1000 }
This forces me to explicitly convert each item of the collection in order to cast it back to int[]
, which is quite time consuming.