-
Notifications
You must be signed in to change notification settings - Fork 2.7k
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
Support for Kryo serialization library #15265
Comments
It should be created in the quarkusio/quarkus repository as an |
Ok so it hasn't changed thanks.. moved.. |
Where do you envision Kryo would be used? |
Hi @geoand, Kryo is fast and small, and also produces very efficient serialized output, so I not only envision this component as a general purpose serializer alternative, but I think it may fit in the IoT space. |
Yes, there no denying that. |
I created FasterXML/jackson-dataformats-binary#328 asking to be implemented as another Jackson Data Binary format |
I don't really see how this would be used and we have not got any feedback on it either, so I'll close this as won't fix |
I am aiming to write an adapter between a legacy system and a new system. I'm looking at using Kryo for dealing with serialization of (very) complex legacy object models that my adapter is constructing from data in the new system. I came across this today, and seeing that it was just closed, figured I'd throw my use case in. I'm still poking around to see if there is a way to bring it in without direct support in Quarkus. |
In that case you would just handle the use of Kryo manually, right? |
Yep! What I ended up doing is targeting a byte array with the output stream and returning that (though, I've ended up on FST for my needs instead of Kryo). For streaming, I think you could pass a ResteasyReactiveOutputStream into Kryo's Output, though I have not confirmed that. |
Kryo serialization option for https://code.quarkus.io/
Hi,
I've read the serialization extension listed in https://code.quarkus.io/, but I haven't found any reference to Kryo.
I think it could be very nice to have Kryo serialization extension listed.
Thank you,
More info:
The text was updated successfully, but these errors were encountered: