fury icon indicating copy to clipboard operation
fury copied to clipboard

A blazingly fast multi-language serialization framework powered by JIT and zero-copy.

Results 312 fury issues
Sort by recently updated
recently updated
newest added

From the code, the Buffer in Cython is just a wrapper around the Buffer in cpp. It might be beneficial to use Python bindings directly, as this could reduce performance...

question

### Search before asking - [X] I had searched in the [issues](https://github.com/apache/fury/issues) and found no similar issues. ### Version 0.9.0 ### Component(s) Java ### Minimal reproduce step ```java public class...

bug

### Feature Request The new collection serialization protocol in https://fury.apache.org/docs/specification/fury_xlang_serialization_spec/#list can be 2x faster than current one in pyfury. #923 has proved it. we should implement this protocol ![image](https://github.com/user-attachments/assets/8ca279b6-4ea1-427a-b6cb-be42ced40eb0) ###...

### Search before asking - [X] I had searched in the [issues](https://github.com/apache/fury/issues) and found no similar issues. ### Version 0.9.0 ### Component(s) Java ### Minimal reproduce step This issue does...

bug

### Feature Request We've supported object deep copy of object from one instance to another instance, but we still don't support deep copy object from one type into another type....

### Question I was looking for a way to re-create a `BinaryRow` object from a previously serialized bytes, but couldn't find it. The [row format guide](https://fury.apache.org/docs/guide/row_format_guide/) has an example of...

question

### Feature Request Kotlin support default value for fields, when deserializing, fury should assign default value to field if serialization didn' have that field and not write value. For example,...

### Search before asking - [X] I had searched in the [issues](https://github.com/apache/fury/issues) and found no similar issues. ### Version main ### Component(s) Rust ### Minimal reproduce step `cargo test` ###...

bug

``` public class FlatStorage implements Serializable { private MemoryBuffer buf; private Map featureMetadata; public FlatStorage(int bufferSize) { this.buf = MemoryUtils.buffer(bufferSize); this.featureMetadata = new HashMap(); } public void addFeature(String name, int...

question

### Feature Request Remove pyfury python implementation, use pure cython only ### Is your feature request related to a problem? Please describe Currently pufury has two implementation for object graph...