Skip to content

Commit fb59707

Browse files
committed
Fix some errors and keep things updated in benchmark_config.json and README.md
1 parent 5067efe commit fb59707

File tree

2 files changed

+2
-7
lines changed

2 files changed

+2
-7
lines changed

frameworks/Kotlin/vertx-web-kotlinx/README.md

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

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

5-
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.
5+
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, 25.
66

77
## Test Type Implementation Source Code
88

@@ -13,7 +13,6 @@ Code is written from scratch to be as concise as possible with common code extra
1313
* [PLAINTEXT](src/main/kotlin/MainVerticle.kt)
1414
* [DB](src/main/kotlin/MainVerticle.kt)
1515
* [QUERY](src/main/kotlin/MainVerticle.kt)
16-
* [CACHED QUERY](src/main/kotlin/MainVerticle.kt)
1716
* [UPDATE](src/main/kotlin/MainVerticle.kt)
1817
* [FORTUNES](src/main/kotlin/MainVerticle.kt)
1918

@@ -48,10 +47,6 @@ http://localhost:8080/db
4847

4948
http://localhost:8080/query?queries=
5049

51-
### CACHED QUERY
52-
53-
http://localhost:8080/cached_query?queries=
54-
5550
### UPDATE
5651

5752
http://localhost:8080/update?queries=

frameworks/Kotlin/vertx-web-kotlinx/benchmark_config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
"database_os": "Linux",
4141
"display_name": "vertx-web-kotlinx-postgresql",
4242
"notes": "",
43-
"versus": "vertx-web"
43+
"versus": "vertx-web-postgres"
4444
}
4545
}
4646
]

0 commit comments

Comments
 (0)