chaokunyang opened a new issue, #2622: URL: https://github.com/apache/fory/issues/2622
### Feature Request Refactor ObjectStreamSerializer to use meta shared compatible serializer and remove key-value compatible serializer ### Is your feature request related to a problem? Please describe Currently [org.apache.fory.serializer.ObjectStreamSerializer](https://github.com/apache/fory/blob/main/java/fory-core/src/main/java/org/apache/fory/serializer/ObjectStreamSerializer.java) use https://github.com/apache/fory/blob/main/java/fory-core/src/main/java/org/apache/fory/serializer/CompatibleSerializer.java for serialize key/value in a type forward/backward way. But the `CompatibleSerializer` is deprecated, it has bigger serialized size when serializing multiple objects of same types. We should use meta shared ones. ### Describe the solution you'd like Note that `ObjectStreamSerializer` use `CompatibleSerializer` to just serialize one layer of objects fields. Currently meta-shared compatible serializers needs some updates to support such cases. ### Describe alternatives you've considered _No response_ ### Additional context _No response_ -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
