This is an automated email from the ASF dual-hosted git repository.

chaokunyang pushed a commit to branch fix-kotlin-blog-compatibility
in repository https://gitbox.apache.org/repos/asf/fory-site.git


The following commit(s) were added to refs/heads/fix-kotlin-blog-compatibility 
by this push:
     new 2b8e6495e95 Clarify Kotlin JSON conversion cost wording
2b8e6495e95 is described below

commit 2b8e6495e956ece7eadc7f6ad80f728e277ed2cd
Author: chaokunyang <[email protected]>
AuthorDate: Tue Sep 8 12:14:02 2026 +0800

    Clarify Kotlin JSON conversion cost wording
---
 blog/2026-09-07-fory_kotlin_json.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/blog/2026-09-07-fory_kotlin_json.md 
b/blog/2026-09-07-fory_kotlin_json.md
index 29ba8c72941..26e1c5d848d 100644
--- a/blog/2026-09-07-fory_kotlin_json.md
+++ b/blog/2026-09-07-fory_kotlin_json.md
@@ -14,7 +14,7 @@ tags: [fory, kotlin, java, json, serialization, performance]
 
 Kotlin applications exchange JSON through HTTP APIs, message queues, and 
stored documents. Application code works with typed models, so each exchange 
involves converting between JSON and Kotlin objects. Reading a document 
includes constructing an object with the right arguments and running its 
initialization logic; writing it must preserve the values needed to reconstruct 
that object.
 
-These conversions also contribute to CPU usage and temporary allocations, 
especially when a service processes many messages or large documents. Apache 
Fory JSON combines Kotlin object mapping with a high-performance JSON engine: 
the Kotlin layer follows the model's type and construction rules, while the 
engine handles JSON parsing and output. The same mapping is available through 
String and direct UTF-8 APIs.
+These conversions also consume CPU time and allocate temporary objects, 
especially when a service processes many messages or large documents. Apache 
Fory JSON combines Kotlin object mapping with a high-performance JSON engine: 
the Kotlin layer follows the model's type and construction rules, while the 
engine handles JSON parsing and output. The same mapping is available through 
String and direct UTF-8 APIs.
 
 ## Getting Started
 


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to