TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Ask HN: What Is Serverless

2 pointsby shreythecrayover 2 years ago
If you had to breakdown serverless and explain it to someone in middle school, how would you describe it?<p>Would you use an analogy to make it more relatable? Would you try to explain it on a surface level or go into the depths of serverless? What concepts would you focus on?

6 comments

TotoHornerover 2 years ago
A web server will take requests and serve them.<p>The web server does this by looking at the request and then running a certain set of instructions on how to serve the request.<p>Rather than having to build the web server, serverless is a service where you can just give the serverless provider the instructions and they will run them for you.
评论 #33266548 未加载
hitpointdrewover 2 years ago
To middle school student, I think I would say something like &quot;It&#x27;s an abstraction layer that Cloud Providers offer so that you can hand them your code, this abstraction layer will spin up&#x2F;down infrastructure on demand whenever your code is requested&#x2F;called. Underneath it all there are still servers and infrastructure, it&#x27;s called serverless because you (the developer) do not have to think about or manage those servers, you just worry about your code.&quot;
gvbover 2 years ago
Its a programmable calculator on steroids.<p>You create &quot;one liner&quot; programs (lambdas) that do mathematical operations like you would with a programmable calculator, including saving to memory and recalling from memory. You can then chain together the various &quot;one liner&quot; programs (composability) to make a complex program that performs the calculation that you need.
scombridaeover 2 years ago
Instead of keeping it under your mattress, you can give your cash to a bank with the guarantee of making withdrawals anytime, anywhere. Serverless is like a bank for information, not money.
nathantsover 2 years ago
serverless: it’s a thing that runs your code.<p>server: it’s a thing that runs your code. you also have to take care of it.
nikauover 2 years ago
stuff that runs on a server.