-
Notifications
You must be signed in to change notification settings - Fork 26
Open
Labels
Description
I have a basic application with a few classes, and I tried to benchmark with a simple
override fun handle(baseRequest: Request, request: HttpServletRequest, response: HttpServletResponse) {
response.withStatus(200).sendJson(JsonCreator.from(value = TestReturn("Hello, world")))
baseRequest.done()
}I did 10K requests at 100 requests, and it took a long time.

Using a localhost, is that the problem? Am I doing the whole scaling thing wrong?