fury
fury copied to clipboard
A blazingly fast multi-language serialization framework powered by JIT and zero-copy.
## What does this PR do? Add EnumNameSerializer for Enum, can config it by org.apache.fury.config.Config#useEnumNameSerializer, default value is false ## Related issues ## Does this PR introduce any user-facing change?...
## Is your feature request related to a problem? Please describe. When Dubbo class serialization security check is enabled: ``` dubbo.application.serialize-check-status=STRICT dubbo.application.auto-trust-serialize-class=true dubbo.application.trust-serialize-class-level=3 ``` Dubbo Serialization Fury keeps running an...
## What does this PR do? ### Support serialization and deserialization of trait objects The relationship between a trait object and a concrete type is generated by a macro and...
I have been using Fury as a mean for serialization in a single application. When it comes to move serialized objects between applications, I have not been able to deal...
## What does this PR do? #1670 ## Does this PR introduce any user-facing change? - [ ] Does this PR introduce any public API change? - [ ] Does...
## What does this PR do? Some classes with no-argument constructors will report an error when calling `copy()`. This pr: - implement the copy method for the no-argument constructor serializer...
### Search before asking - [X] I had searched in the [issues](https://github.com/apache/incubator-fury/issues) and found no similar issues. ### Version 0.5.0 - https://repo1.maven.org/maven2/org/apache/fury/fury-core/0.5.0/fury-core-0.5.0-javadoc.jar ### Component(s) Java ### Minimal reproduce step Hi...
## What does this PR do? Implement chunk based map serialization in #925. This pr doesn't provide JIT support, it will be implemented in later PR. ## Related issues ##...
## Is your feature request related to a problem? Please describe. We implemented scala serializers in fury-scala, we should also implement copy method in those serializers ## Describe the solution...
## Is your feature request related to a problem? Please describe. Can fury support serializing enumerations by enumeration name? Serializing enumeration names like a string serializer. Serializing existing enumerations through...