<script src="https://rawgit.com/kawanet/msgpack-lite/master/dist/msgpack.min.js"></script>
var stringData = {"glossary":{"title":"example glossary","GlossDiv":{"title":"S","GlossList":{"GlossEntry":{"ID":"SGML","SortAs":"SGML","GlossTerm":"Standard Generalized Markup Language","Acronym":"SGML","Abbrev":"ISO 8879:1986","GlossDef":{"para":"A meta-markup language, used to create markup languages such as DocBook.","GlossSeeAlso":["GML","XML"]},"GlossSee":"markup"}}}}};
var numberData = [
[1, 2, 3, 4, -1, true, null],
[3, 6, 5, 4, 1, false, 7],
[3, 2, 8, 1, 0, true, 0],
[10, 11, 12, 13, 14, false, true],
[15, 16, 17, 18, 19, true, null],
[20, 21, 22, 23, 24, false, 7],
[25, 26, 27, 28, 29, true, 0],
100, 200, 300,
[
[1, 0, 0, 0, 0],
[0, 1, 0, 0, 0],
[0, 0, 1, 0, 0],
[0, 0, 0, 1, 0],
[0, 0, 0, 0, 1]
]
];
var jsonEncodedStrings = JSON.stringify(stringData),
jsonEncodedNumbers = JSON.stringify(numberData),
msgpackEncodedStrings = msgpack.encode(stringData),
msgpackEncodedNumbers = msgpack.encode(numberData);
var result = msgpack.encode(stringData);
var result = JSON.stringify(stringData);
var result = msgpack.encode(numberData);
var result = JSON.stringify(numberData);
var result = JSON.parse(jsonEncodedStrings);
var result = msgpack.decode(msgpackEncodedStrings);
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
MsgPack Strings Encode | |
JSON Strings Encode | |
MsgPack Numbers Encode | |
JSON Numbers Encode | |
JSON string decode | |
msgpack string decode |
Test name | Executions per second |
---|---|
MsgPack Strings Encode | 150755.3 Ops/sec |
JSON Strings Encode | 754351.1 Ops/sec |
MsgPack Numbers Encode | 114292.2 Ops/sec |
JSON Numbers Encode | 508692.3 Ops/sec |
JSON string decode | 402974.7 Ops/sec |
msgpack string decode | 128990.5 Ops/sec |
Let's break down the provided benchmark and explain what is tested, compared, and their pros and cons.
Benchmark Overview
The provided JSON represents a JavaScript microbenchmark test created on MeasureThat.net. The test compares the performance of two data serialization formats: MessagePack (MsgPack) and JSON.
Serialization Formats Compared
Two serialization formats are being compared:
Test Cases
The benchmark consists of 6 test cases, each testing a different aspect of the serialization formats:
Library Used
The msgpack-lite
library is used for MsgPack encoding and decoding.
Special JS Feature/Syntax
None are mentioned.
Other Considerations
When choosing between JSON and MsgPack, consider the trade-off between:
Benchmark Results
The provided benchmark results show the performance of each test case on a specific browser and device platform. The results are measured in executions per second (FPS).
In general, MsgPack performs better than JSON for larger datasets, but JSON may have an advantage in terms of human-readability and ease of implementation.
Alternatives
Other data serialization formats that can be used instead of JSON and MsgPack include:
Each alternative has its strengths and weaknesses, and the choice ultimately depends on the specific use case and requirements.