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

Could we please add OSGi manifest to the jar so that we can use the jar in an OSGi app. On Maven Central (https://mvnrepository.com/artifact/org.msgpack/msgpack-core), version 0.8.13 is the latest version...

Hi, I use messagePack.write(myCalss) and stored it to Redis. Then I opened a terminal and by using Redis command "hget" I got a what I just stored in Redis. This...

v06

**# java POJO** `public class ReportHeadParam { private Integer messageType; private byte[] messageParam; public Integer getMessageType() { return messageType; } public void setMessageType(Integer messageType) { this.messageType = messageType; } public...

Non-blocking parsing was introduced by Jackson 2.9 https://github.com/FasterXML/jackson-core/issues/57 Currently, JSON and Smile are supported. It would be great for msgpack to support that to leverage [Spring WebFlux](https://docs.spring.io/spring/docs/current/spring-framework-reference/web-reactive.html), [Reactive Streams](http://www.reactive-streams.org/) and...

How can I convert an Array to ArrayValue? For instance String[] myStringArray = {"abc", "def", "ghi"} // now I want to pack it in MessageBufferPacker // I don't want to...

question

hi.. This is a very important question. Does msgpack lib support ibm jdk? If not support, how is it used?

question

I'm trying to upgrade from 0.6 to 0.7, and from what I saw the protocol itself is backward compatible. We're having a lot of services out there which are using...

Hey! Great library, I would like you to add a method to the packer that knows how to pack `CharSequence` (almost the same as string) and use it in the...

Useful to parse message coming in from netty for example without creating a lot of garbage. Also expose the method to create a parser from a sub array.

I think there must be some documentation that I just can't find hiding somewhere. If I pack a float, it seems it gets packed as a float value, and I...