Skip to content

Commit

Permalink
Update README.md correspondingly
Browse files Browse the repository at this point in the history
  • Loading branch information
ShreckYe committed Oct 28, 2024
1 parent 9add83e commit dd3c68b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion frameworks/Kotlin/vertx-web-kotlinx/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@

Vert.x-Web in Kotlin with request handling implemented as much with official kotlinx libraries as possible.

Code is written from scratch to be as concise as possible with common code extracted into common (possibly inline) functions. SQL client implementation details and JVM Options are adapted referring to [the vertx-web portion](../../Java/vertx-web) and [the vertx portion](../../Java/vertx). All requests are handled in coroutines and suspend `await`s are used instead of future compositions. Compared to [the vertx-web-kotlin-coroutines portion](../vertx-web-kotlin-coroutines), besides adopting the Kotlinx libraries, this project simplifies the code by using more built-in Coroutine functions and avoids mutability as much as possible. JSON serialization is implemented with kotlinx.serialization and Fortunes with kotlinx.html. The benchmark is run on the latest LTS version of JVM, 17.
Code is written from scratch to be as concise as possible with common code extracted into common (possibly inline) functions. SQL client implementation details and JVM Options are adapted referring to [the vertx-web portion](../../Java/vertx-web) and [the vertx portion](../../Java/vertx). All requests are handled in coroutines and suspend
`await`s are used instead of future compositions. Compared to [the vertx-web-kotlin-coroutines portion](../vertx-web-kotlin-coroutines), besides adopting the Kotlinx libraries, this project simplifies the code by using more built-in Coroutine functions and avoids mutability as much as possible. JSON serialization is implemented with kotlinx.serialization and Fortunes with kotlinx.html. The benchmark is run on the latest LTS version of JVM, 21.

## Test Type Implementation Source Code

Expand Down

0 comments on commit dd3c68b

Please sign in to comment.