You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a few questions regarding your repository. I would appreciate it if you could answer them.
1- I was trying to use your library and Avro for unsigned integers. Since unsigned integers are Serializable and Deserializable, based on types the library supports, I should be able to use it. but I could not find a way to use unsigned integers or other serde-compatible types in your document. Can you please give me so information in this regard?
2- In my case, I am going to compress and store different values with the same schema over time. Is there any efficient way to compress values for the same schema?
Thank you
The text was updated successfully, but these errors were encountered:
The library supports all the types in the avro spec and they have been mapped to many of the most common Rust types. If you are trying to serialise a type who hasn't been supported yet, you can either convert it to a type already supported first (https://github.com/flavray/avro-rs/blob/master/src/types.rs#L113) or open a PR to add support for them.
Greetings!
Thank you for your great repository.
I have a few questions regarding your repository. I would appreciate it if you could answer them.
1- I was trying to use your library and Avro for unsigned integers. Since unsigned integers are
Serializable
andDeserializable
, based on types the library supports, I should be able to use it. but I could not find a way to use unsigned integers or otherserde-compatible
types in your document. Can you please give me so information in this regard?2- In my case, I am going to compress and store different values with the same schema over time. Is there any efficient way to compress values for the same schema?
Thank you
The text was updated successfully, but these errors were encountered: