From 0410672005f5860d58c7bec020c8c98c477e01fc Mon Sep 17 00:00:00 2001 From: Anton Keks Date: Thu, 24 Aug 2023 14:25:33 +0300 Subject: [PATCH] remove shell comments --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index eb37f6d..8d0266e 100644 --- a/README.md +++ b/README.md @@ -68,10 +68,10 @@ This simple route produces ~19000 rps, with 99% taking less than 1ms:
`ab -n 10000 -c 10 http://localhost:8080/api/hello` This jdbc access route produces ~11000 rps, with 99% taking less than 1ms:
-`ab -n 10000 -c 10 http://localhost:8080/api/hello/user/9725b054-426b-11ee-92a5-0bd2a151eea2 # produces ~19000 rps` +`ab -n 10000 -c 10 http://localhost:8080/api/hello/user/9725b054-426b-11ee-92a5-0bd2a151eea2` JDBC access route produces ~11000 rps, with 99% taking less than 1ms:
-`ab -n 10000 -c 10 http://localhost:8080/api/hello/user/9725b054-426b-11ee-92a5-0bd2a151eea2 # produces ~19000 rps` +`ab -n 10000 -c 10 http://localhost:8080/api/hello/user/9725b054-426b-11ee-92a5-0bd2a151eea2` Coroutine suspension test with 1000 concurrent requests, ~7000 rps, 80% of requests complete within the specified delay of 100ms:
`ab -n 10000 -c 1000 http://localhost:8080/api/hello/suspend`