messagepack Questions
5
Solved
I read the msgpack-cli quick start documentation.
I also got the C# (CLI) NuGet package (v0.3).
None of the classes (eg BoxingPacker, CompiledPacker or ObjectPacker) mentioned in the official doc...
Illdefined asked 6/4, 2013 at 2:29
6
Solved
Recently I've found MessagePack, an alternative binary serialization format to Google's Protocol Buffers and JSON which also outperforms both.
Also there's the BSON serialization format that is use...
Opposable asked 15/6, 2011 at 9:14
4
The official MessagePack page links to the page:
https://github.com/msgpack/msgpack-javascript
but its last update is three years ago. On the other hand, there are other implementations of Mess...
Centri asked 31/7, 2013 at 11:34
3
Solved
I'm trying to send a MessagePack-encoded message from Cowboy to a browser over WebSocket, and received data is always empty or invalid. I'm able to send binary data from JS to my cowboy handler, bu...
Ardellardella asked 22/3, 2016 at 11:31
4
Solved
Has someone tried to use MessagePack with an Android app?
Is it possible? I have tried to use the Jar from msgpack-java and received the following Exception:
Caused by: java.lang.ExceptionInInitia...
Smedley asked 23/9, 2011 at 13:14
0
The MessagePack specification helps you to learn about the available data types and their binary representation. However, I can't find information on the "grammar" that has to be used for building ...
Meunier asked 27/4, 2016 at 15:27
2
Solved
I just installed node-msgpack and tested it against native JSON. MessagePack is much slower. Anyone know why?
Using the authors' own benchmark...
node ~/node_modules/msgpack/bench.js
msgpack pa...
Ahmad asked 8/1, 2013 at 21:34
3
Solved
The deserialization library (messagepack) I am using does not provide null-terminated strings. Instead, I get a pointer to the beginning of the string and a length. What is the fastest way to compa...
Policlinic asked 11/3, 2015 at 20:50
0
RPC do things like this:
server define a function foo_max(para)
client call foo_max, send 'max+para'
server get 'max' and call foo_max(para)
server send return val
client get result and return
B...
Abednego asked 2/11, 2013 at 8:57
0
I have been reading a lot about Avro and Messagepack these days. Not sure which one to use when. One of the major questions I have is the difference in performance between the two on the foll...
Massenet asked 15/9, 2013 at 3:42
1
Solved
I'm having a problem storing a MessagePacked hash in Redis. I've pasted a test case below. When pulling out the packed data from Redis and unpacking it, the hash is slightly corrupted. This appears...
Intercourse asked 11/10, 2012 at 0:56
1
Solved
In looking at the C API for MessagePack, there are a number of functions to appropriately serialize (pack) the data according to type: msgpack_pack_uint8, msgpack_pack_int32, ...
There doesn't see...
Sevastopol asked 14/9, 2012 at 20:19
2
Solved
Looking for some fast, simple and stable RPC library I stumbled upon MessagePack project which seems to be very good. It is also under active development.
If you used it in any way, could you plea...
Villagomez asked 29/3, 2011 at 7:29
1
© 2022 - 2024 — McMap. All rights reserved.