I have read on various sites that Msgpack is JSON compatible? What does that really mean? Example of this claim: 1) https://stackoverflow.com/a/6357042/64758 2) http://blog.andrewvc.com/why-arent-you-using-messagepack
If I have the following json (written using json.org java library); how would one write that in MsgPack
JSONObject obj = new JSONObject();
obj.put("key1", "value1");
obj.put("key2", "value2");
{"key1":"value1","key2":"value2"}
How would one write similar using Msgpack? I dont see a concept of 'key/value' pairing in there