ayush00git opened a new pull request, #3201:
URL: https://github.com/apache/fory/pull/3201

   ## Go Array Serialization Support
   I have implemented optimized array serialization for `uint16`, `uint32`, and 
`uint64` types in Go. These types now map to standard Fory type IDs 
(INT16_ARRAY, INT32_ARRAY, INT64_ARRAY) instead of falling back to generic list 
serialization, ensuring better performance and cross-language compatibility.
   
   ### Changes
   - Serialization Logic -
   I updated `array_primitive.go` to include dedicated serializers:
   
   1. uint16ArraySerializer: Maps to INT16_ARRAY
   2. uint32ArraySerializer: Maps to INT32_ARRAY
   3. uint64ArraySerializer: Maps to INT64_ARRAY
   
   These serializers support both fast-path (direct memory copy on 
little-endian systems) and standard path serialization.
   Rest is in progress...


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

Reply via email to