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

MessagePack serializer implementation for Java / msgpack.org[Java]

Results 96 msgpack-java issues
Sort by recently updated
recently updated
newest added

Updates [org.scala-lang.modules:scala-collection-compat](https://github.com/scala/scala-collection-compat) from 2.8.0 to 2.8.1. [GitHub Release Notes](https://github.com/scala/scala-collection-compat/releases/tag/v2.8.1) - [Version Diff](https://github.com/scala/scala-collection-compat/compare/v2.8.0...v2.8.1) I'll automatically update this PR to resolve conflicts as long as you don't change it yourself. If you'd...

Hi, I'm using msgpack version 0.6.12 I get this below error while registering Locale. org.msgpack.template.builder.TemplateBuildException: Cannot compile: { if (!$3 && $1.trySkipNil()) { return null; } java.util.Locale$LocaleNameGetter _$$_t; if ($2...

Updates * [org.wvlet.airframe:airframe-json](https://github.com/wvlet/airframe) * [org.wvlet.airframe:airspec](https://github.com/wvlet/airframe) from 22.7.2 to 22.7.3. [GitHub Release Notes](https://github.com/wvlet/airframe/releases/tag/v22.7.3) - [Version Diff](https://github.com/wvlet/airframe/compare/v22.7.2...v22.7.3) I'll automatically update this PR to resolve conflicts as long as you don't change it...

Updates * [org.wvlet.airframe:airframe-json](https://github.com/wvlet/airframe) * [org.wvlet.airframe:airspec](https://github.com/wvlet/airframe) from 22.7.2 to 22.7.3. [GitHub Release Notes](https://github.com/wvlet/airframe/releases/tag/v22.7.3) - [Version Diff](https://github.com/wvlet/airframe/compare/v22.7.2...v22.7.3) I'll automatically update this PR to resolve conflicts as long as you don't change it...

This new method copies the lower 8-bits of the characters. A separate writePayload(String src) method would be more performant because we're able to directly copy the bytes from the string...

This will Resolve #657 It limits internal buffer size when unpacking Array and Map. However, I think the default bufferSize of 8192 is too small. I changed the default buffer...

When I run my program, I get a warning message with the title. The message also said "Please consider reporting this to the maintainers of org.msgpack.core.buffer.DirectBufferAccess", so I will report...

There is a problem of unexpectedly consuming a large amount of memory when unpacking huge Array and Map. For example, this code may causes an OutOfMemoryError. ```java public static void...

Updates com.fasterxml.jackson.core:jackson-databind from 2.10.5.1 to 2.13.3. I'll automatically update this PR to resolve conflicts as long as you don't change it yourself. If you'd like to skip this version, you...

We are using message pack to serialize k/v structure data and save in to db. In very rare case(about 0.000000001%), the result is corrupted. We serializes a lot of data...