this post was submitted on 27 Oct 2023
662 points (97.8% liked)

Programmer Humor

32443 readers
1249 users here now

Post funny things about programming here! (Or just rant about your favourite programming language.)

Rules:

founded 5 years ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 26 points 1 year ago (10 children)

Eli5 server less, even on paper...

[–] [email protected] 18 points 1 year ago (1 children)

Someone else has a server and their infrastructure is set up so you can upload a zip of some executable and they'll figure out how to make it run. You don't worry about any details except your code and whatever API is require to be compatible, and they worry about hosting it, making sure it has memory, CPU time, disk space, DB, etc.

[–] [email protected] 12 points 1 year ago (2 children)

So it's essentially the same as shared web hosting, just masquerading as a new concept. 15 years ago I'd deploy PHP sites by uploading them via FTP to some free web hosting company.

[–] [email protected] 5 points 1 year ago

Except it's not quite shared but "containerized"

[–] [email protected] 2 points 1 year ago

Yep. But you pay only for the CPU time you use and very often the only IO you can do is HTTP due to the runtime.

load more comments (8 replies)