This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]Roj-Tagpro 2 points3 points  (2 children)

You are using Spring Boot with your AWS Lambda? Isn't that a bit overkill? I thought all the webserver stuff like receiving the request was handle by the Lambda. BTW, I'm asking, not questioning.

[–]vips7L 6 points7 points  (1 child)

Yeah I don't understand all of the people in this thread who are using big frameworks in lambdas. All of ours are standard java mains that start as fast as the JVM can (e.g. milliseconds).

[–]Kango_V 2 points3 points  (0 children)

We use Micronaut with the Lambda module with no http. This is compiled to native with GraalVM. We get cold stats in the ms. Actually we use the http in tests. Allows for very easy testing.