fury
fury copied to clipboard
A blazingly fast multi-language serialization framework powered by JIT and zero-copy.
### Feature Request Currently fory rust provide following deserialize API: ```rust pub fn deserialize(&self, bf: &[u8]) -> Result { let mut reader = Reader::new(bf); let meta_offset = self.read_head(&mut reader)?; let...
## What’s Changed? This PR removes commented lines (`#` and ``) from auto-generated Git commit messages, ensuring the commit history is clean and readable. ## Fixes - Fixes #1588 Hi!...
### Feature Request In https://github.com/apache/fory/pull/2714, we supported circular reference serialization for rust, but we don't support it for xlang. The xlang support for circular reference is not supported in that...
## Why? In my project we have 1000s of classes that are serialized, we have a custom mechanism for registering those class using a UUID which provides a way to...
### Search before asking - [x] I had searched in the [issues](https://github.com/apache/fory/issues) and found no similar issues. ### Version OS: ArchLinux (6.16.7-zen1-1-zen) Fory: 'org.apache.fory:fory-core:0.13.0-SNAPSHOT' (Sep 30) JDK: GraalVM CE 25+37.1...
### Feature Request remove following type id, clean code and fix tests. ```go // UINT8 Unsigned 8-bit little-endian integer UINT8 = 100 // Not in mapping table, assign a higher...
# Description of the current issue: We need to remind developers : 1. After defining and register a custom serializer for a type, the `type_mapping` of that type corresponds to...
### Feature Request add more jdk serializers ### Is your feature request related to a problem? Please describe Add serializers for following types: ``` 2025-09-25 05:23:13 WARN ObjectStreamSerializer:91 [main] -...
### Feature Request Nowadays, there are many problems with cross-language serialization code, all of which need to be modified ### Is your feature request related to a problem? Please describe...
## What does this PR do? Users can choose the level of error messages to be printed. ## Related issues Deserialize big object using Fury frequently, triggering a Full GC...