Severless Stuff - JamesDansie/data-structures-and-algorithms GitHub Wiki

Serverless

Author: James Dansie

Serverless apps are apps that are based on a series of functions instead of a typical server that stores state data. The main benefits of serverless sites are;

  • Responsibility for hosting are on cloud provider
  • "focus on code, not infrastructure"
  • Can make many micro services instead of one monster main server

The cons are;

  • Can only have fairly simple/fast functions. There is a max time out of 300 seconds, so slower/more complex behavior still needs a server
  • Lack of control

References