[Serialization] add fury serialization framework to dubbo #226
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
What is the purpose of the change
Fury is a blazing fast serialization powered by jit and zero-copy. Fury features at:
-Drop-in replace Java serialization frameworks such as JDK/Kryo/Hessian without modifying any code, but 10~100x faster, which can greatly improve the efficiency of high-performance RPC calls, data transfer and object persistence.
JDK serialization API such as
writeObject/readObject/writeReplace/readResolve/readObjectNoData/Externalizable
100% compatible.JDK8~21 supported, Interactivity between jdk versions. The data serialized by jdk8 can be deserialized by jdk21
JDK 17+ record supported.
10X faster than kryo in jdk17 record: https://github.com/chaokunyang/fury-benchmarks#fury-vs-kryo-in-jdk17
Fastest serialization framework in https://github.com/eishay/jvm-serializers/wiki
This PR add the fury integration to dubbo repo for better consistency with dubbo serialization-api
Related issue
apache/dubbo#13160