i was going to lookup what "serverless" could possibly mean, but i stopped reading after the first sentence because it literally said it used aws, a service that's hosted on servers
@xenon the idea is you hand somebody with large infrastructure your code, and they handle setting up the infrastructure for running that code on a completely on-demand basis; there is no VM/container/whatever even running your code until someone is actively trying to connect to it, and you are charged on a per-invocation basis
(more precisely you are uploading code that responds to events. so you could have something that responds to a basic connection, something else that responds on reads or writes to the database, and so on)
what it's about, if your’re curious re: computer
@xenon the idea is you hand somebody with large infrastructure your code, and they handle setting up the infrastructure for running that code on a completely on-demand basis; there is no VM/container/whatever even running your code until someone is actively trying to connect to it, and you are charged on a per-invocation basis
(more precisely you are uploading code that responds to events. so you could have something that responds to a basic connection, something else that responds on reads or writes to the database, and so on)