Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Pure Scala msgpack #26

Open
xerial opened this issue Jan 4, 2018 · 0 comments
Open

Pure Scala msgpack #26

xerial opened this issue Jan 4, 2018 · 0 comments

Comments

@xerial
Copy link
Member

xerial commented Jan 4, 2018

I'm now prototyping pure-scala implementation of msgpack for supporting Scala, Scala.js, and Scala.native:
wvlet/airframe#127

Basic ideas for the implementation is as follows:

  • Having SPI for providing interfaces for implementing MessagePack based codec (unpackXXX, packXXX). This will be useful if you need to implement MessagePack based object serizliation/deserialization code.
  • Remove performance specific optimization in msgpack-java (e.g., MessageBuffer)
  • Use simpler Value classes (e.g., Integer, Float, String, Array, Map, etc.) suited to Scala case classes. msgpack-java needed to use complex interface hierarchies to support immutable classes. I want to remove this complexity.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant