clojure-msgpack icon indicating copy to clipboard operation
clojure-msgpack copied to clipboard

MessagePack implementation in Clojure / msgpack.org[Clojure]

Results 2 clojure-msgpack issues
Sort by recently updated
recently updated
newest added

Hi, Thanks for writing this library. We needed to switch to binary data transmission for an IOT project involving lots of real-time data, and this helped a lot. In order...

I have a record like this: ``` clojure (defrecord Foo [a b]) ``` and I would like to make it serializable, like this: ``` clojure (extend-msgpack Foo 21 [v] (msgpack/pack...