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.
   
![image](https://github.com/apache/incubator-fury/assets/116876207/544654fe-09d0-4697-b7e2-378e62b5711b)
   


-- 
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: commits-unsubscr...@fury.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@fury.apache.org
For additional commands, e-mail: commits-h...@fury.apache.org

Reply via email to