-
-
Notifications
You must be signed in to change notification settings - Fork 841
[POC] FieldSerializer for Records #931
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
base: master
Are you sure you want to change the base?
Conversation
…izer # Conflicts: # src/com/esotericsoftware/kryo/serializers/DefaultSerializers.java
|
See #884 for the discussion about |
…izer # Conflicts: # test-jdk14/com/esotericsoftware/kryo/serializers/RecordSerializerTest.java
…izer # Conflicts: # .github/workflows/pr-workflow.yml
…izer # Conflicts: # .github/workflows/pr-workflow.yml
|
Sorry to jump on a PR - let me know if I should post somewhere else. I'm currently looking at serializing records with Kryo with the requirement that I have forward/backward compatibility. I've tested using this branch and it does exactly what I need, so I'd like to know the best way to move forward:
I appreciate any advice on the best way forward |
This is a POC for moving record serialization from
RecordSerializerintoFieldSerializer.This approach has two main advantages:
FieldSerializercan be used for recordsFieldSerializer(Compatible, Versioned, Tagged, ..) can be adjusted for recordsJDK 17+ is required for this PR so it is a likely candidate for the next major version.