AWS recently released a processing service, lambda. It can start in milliseconds and now only supports NodeJS.
I am wondering how they can implement resource isolation. If they use something like docker, it may take a few seconds to start the container. If they run NodeJS code directly, how can they support another version of NodeJS? This will be a big problem if you want to support other programming languages.
source
share