This is an automated email from the ASF dual-hosted git repository. chaokunyang pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/fory-site.git
commit f6a27356c3282760428e12f30ca6c8db56f75ac9 Author: chaokunyang <shawn.ck.y...@gmail.com> AuthorDate: Fri Jul 18 06:33:06 2025 +0000 🔄 synced local 'docs/guide/' with remote 'docs/guide/' --- docs/guide/java_serialization_guide.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/guide/java_serialization_guide.md b/docs/guide/java_serialization_guide.md index 3d190718..deb32f0d 100644 --- a/docs/guide/java_serialization_guide.md +++ b/docs/guide/java_serialization_guide.md @@ -701,7 +701,7 @@ Note that this implementation provides better performance at the cost of flexibi When implementing a serializer for a custom Map type, you must extend `MapSerializer` or `AbstractMapSerializer`. The key difference between these two is that `AbstractMapSerializer` can serialize a class which has a map-like structure but is not a java Map subtype. -Similiar to collection serializer, this is a special parameter `supportCodegenHook` needs be configured: +Similar to collection serializer, this is a special parameter `supportCodegenHook` needs be configured: - When `true`: - Enables optimized access to map elements and JIT compilation for better performance @@ -710,7 +710,7 @@ Similiar to collection serializer, this is a special parameter `supportCodegenHo - Recommended for most maps - When `false`: - - Uses interfaced-based element access and dynamic serializer dispatch for elements, which have higer cost + - Uses interfaced-based element access and dynamic serializer dispatch for elements, which have higher cost - More flexible for custom map types - Required when map has special serialization needs - Handles complex map implementations --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@fory.apache.org For additional commands, e-mail: commits-h...@fory.apache.org