FasterXML / jackson-dataformats-binary

Uber-project for standard Jackson binary format backends: avro, cbor, ion, protobuf, smile
Apache License 2.0
310 stars 133 forks source link

Introduce support for Kryo #328

Open gastaldi opened 2 years ago

gastaldi commented 2 years ago

Kryo is a fast and efficient binary object graph serialization framework for Java. The project's goals are high speed, small size, and an easy-to-use API.

https://github.com/EsotericSoftware/kryo

cowtowncoder commented 2 years ago

I am not sure this is feasible, given that Kryo is more a serialization framework of its own, including databinding, and less a general purpose binary format. So I guess the question is what exactly would the goal of a Jackson backend be.

But I'll leave this open just in case someone wants to consider if some support could be added.