python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
msgpack c++ packing and go unpacking
I was trying out msgpack, with c++ and go versions, however I run into a problem of not being able to produce identical binaries when marshalling/packing data...
here is the cpp version
struct Data {
...

Viktor Khristenko
Votes: 0
Answers: 0
MessagePack how to write a stream of serialized structs to / from a BufWriter/BufReader
I'm writing a giant stream of messages (from a websocket feed) to a file.
The messages look like this, an enum of structs that are themselves serializable.
enum SerializedMessage {
Level2(Level2),...
nxstock-trader
Votes: 0
Answers: 1
"is not registered in resolver" exception when serializing with abstract class using MessagePack
Trying to serialize componentMappers . The Exception is throwed at .Serialize():
var componentMappers = new Bag<ComponentMapper>();
var componentMappersS = MessagePackSerializer.Serialize(compon...

dclipca
Votes: 0
Answers: 1
Could not load file or assembly of project (when it is not referenced)
There are 3 projects:
Server - game server
Client - game client
Shared - code shared between the Client and Server
Server communicates with Client by sending MessagePack-serialized class instances f...

dclipca
Votes: 0
Answers: 0