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

科技回声

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

GitHubTwitter

首页

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

资源链接

HackerNews API原版 HackerNewsNext.js

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

Ask HN: How does one design a system to deliver scheduled notifications?

1 点作者 adnauseum将近 5 年前
Every week at work I get a bunch of reminders which I schedule in apps like Slack, Google Calendar, etc. These notifications arrive always within the minute that I scheduled and it always impresses me! Delightful!<p>I want to learn about how a this type of system is designed. I&#x27;ve searched a lot, but haven&#x27;t yielded anything about systems that handle scheduled notifications.<p>Some wonderings: - What is the name given to these types of systems (if any)? - How does one design a system like this? - Are there any open source projects I can learn from?

2 条评论

PaulHoule将近 5 年前
As an applications programmer in a hurry I would do this by using something like<p><a href="https:&#x2F;&#x2F;aws.amazon.com&#x2F;sqs&#x2F;" rel="nofollow">https:&#x2F;&#x2F;aws.amazon.com&#x2F;sqs&#x2F;</a><p>A desktop application could connect to SQS directly, a web application would need to have a websocket server that catches notifications.
new_guy将近 5 年前
Just a simple cron job?