https://kotlinlang.org logo
#kotless
Title
# kotless
m

Mattlangsenkamp

12/10/2020, 5:37 AM
Would there be any benefit to using reactive programming techniques with a severless framework? As I understand it lambda will spin up new instances if all existing instances are processing a request. if an already spun up instance was waiting on a db but made good use of reactive/concurrent programming would this instance then appear as "free" to handle a request or would it make no difference to lambda?
t

TanVD

12/10/2020, 9:55 AM
There would be no difference. Basically lambdas are already parallelization technique and any reactivity should be build upon them
Meaning you should reactively create and stop lambdas itself, not something inside them :)
m

Mattlangsenkamp

12/10/2020, 9:50 PM
that is what i thought and couldnt find much info on it.