is Ktor server a good choice when the code should ...
# ktor
b
is Ktor server a good choice when the code should potentially run on something serverless like AWS lambda? I know that at least Spring's overhead is probably too high; main concerns are startup time and not having to deal with reflection/annotations should GraalVM be used
1
m
Just anecdotal but we use Ktor on Google Cloud Run (AWS lambda competitor) and so far I don’t have problems. We don’t use GraalVM though.
b
thank you, that's useful info 🙂