TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

Ask HN: What Is Serverless

2 点作者 shreythecray超过 2 年前
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 条评论

TotoHorner超过 2 年前
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 未加载
hitpointdrew超过 2 年前
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;
gvb超过 2 年前
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.
scombridae超过 2 年前
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.
nathants超过 2 年前
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.
nikau超过 2 年前
stuff that runs on a server.