msgpack-java
msgpack-java copied to clipboard
MessagePack serializer implementation for Java / msgpack.org[Java]
## About this PR 📦 Updates [org.xerial.sbt:sbt-sonatype](https://github.com/xerial/sbt-sonatype) from `3.12.0` to `3.12.2` 📜 [GitHub Release Notes](https://github.com/xerial/sbt-sonatype/releases/tag/v3.12.2) - [Release Notes](https://github.com/xerial/sbt-sonatype/blob/master/ReleaseNotes.md) - [Version Diff](https://github.com/xerial/sbt-sonatype/compare/v3.12.0...v3.12.2) ## Usage ✅ **Please merge!** I'll automatically update this...
I wrote this crude benchmark to compare the performance of JSON and MessagePack. Consistently, JSON is faster during serialization, faster on deserialization, and MessagePack produces smaller payloads. Based on what...
## About this PR 📦 Updates [com.fasterxml.jackson.core:jackson-databind](https://github.com/FasterXML/jackson-databind) from `2.16.2` to `2.18.0` ## Usage ✅ **Please merge!** I'll automatically update this PR to resolve conflicts as long as you don't change...
It would be nice to have a visual representation of the relationship of Java types to msgpack types without having to think about counting bits\bytes, etc.
## About this PR 📦 Updates [com.github.sbt:sbt-dynver](https://github.com/sbt/sbt-dynver) from `5.1.0` to `5.1.1` 📜 [GitHub Release Notes](https://github.com/sbt/sbt-dynver/releases/tag/v5.1.1) - [Version Diff](https://github.com/sbt/sbt-dynver/compare/v5.1.0...v5.1.1) ## Usage ✅ **Please merge!** I'll automatically update this PR to resolve...
in versions up to 0.9.6 of msgpack-core, the package dependency to "android.os" was optional. With 0.9.7 and following, it is no more optional and causes problems for me. Is this...
### Overview The msgpack specification [defines the `str` types](https://github.com/msgpack/msgpack/blob/master/spec.md#str-format-family) as: > Str format family stores a byte array But [in Java](https://docs.oracle.com/javase/8/docs/api/java/lang/String.html): > The String class represents character strings. The difference...
## About this PR 📦 Updates * [org.wvlet.airframe:airframe-json](https://github.com/wvlet/airframe) * [org.wvlet.airframe:airspec](https://github.com/wvlet/airframe) from `2025.1.1` to `2025.1.14` 📜 [GitHub Release Notes](https://github.com/wvlet/airframe/releases/tag/v2025.1.14) - [Version Diff](https://github.com/wvlet/airframe/compare/v2025.1.1...v2025.1.14) ## Usage ✅ **Please merge!** I'll automatically update this...
## About this PR 📦 Updates [com.fasterxml.jackson.core:jackson-databind](https://github.com/FasterXML/jackson-databind) from `2.18.2` to `2.18.4` ## Usage ✅ **Please merge!** I'll automatically update this PR to resolve conflicts as long as you don't change...
I am using JsonReader to read json bytes to JsonObject. What is the equivalent for msgpack? Below is the code we are using for desrialising json to JsonObject. ``` JsonReader...