You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This ticket will be the root of the MessagePack implementation process.
Similarly to fs2-data-cbor, the fs2-data-msgpack should be split into two modules:
The low module which will work on a flat model that closely mimics the raw MessagePack format. Data in this model will not be converted into language-level values but rather kept in it's byte form.
The high module that will work on an AST typed accordingly to the implementation specification. The parsing and serialization in this module should most likely be built on top of the low module.
We can split the process of implementing the format into the following parts:
This ticket will be the root of the MessagePack implementation process.
Similarly to
fs2-data-cbor
, thefs2-data-msgpack
should be split into two modules:low
module which will work on a flat model that closely mimics the raw MessagePack format. Data in this model will not be converted into language-level values but rather kept in it's byte form.high
module that will work on an AST typed accordingly to the implementation specification. The parsing and serialization in this module should most likely be built on top of thelow
module.We can split the process of implementing the format into the following parts:
low
high
The text was updated successfully, but these errors were encountered: