LiangliangSui commented on issue #1545:
URL:
https://github.com/apache/incubator-fury/issues/1545#issuecomment-2074517837
@chaokunyang We currently use UTF8 for cross-language serialization, and
only Java(not cross-language) uses Latin/UTF16.
```java
public void writeString(MemoryBuffer buffer, String value) {
if (isJava) {
writeJavaString(buffer, value);
} else {
writeUTF8String(buffer, value);
}
}
```
Will we use UTF16 as the default cross-language String encoding in the
future?
I see that the cross-language currently designed in
fury_xlang_serialization_spec still uses UTF8 as the default.

--
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]