A Quick Intro to Serverless Computing
In a Nutshell Serverless computing is the atomization of cloud computing into units of functions, which are usually endpoints. Then, instead of getting billed for the servers that host your application 24/7 (or when your servers are on), you get billed for the execution time of those functions. Migrating to a Stateless Architecture You can ‘cheat’ on the statelessness by linking to databases that hosts your state(s) - this can make sense if your state isn’t something that changes too frequently....