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: How do you prefer to run background jobs for a website/service?

5 pointsby billymeltdownalmost 16 years ago
Just about any sizable web-available service generally needs to run background jobs. This almost always includes some interaction with inbound or outbound mail services which tend to be slow (even with my man Exim on the case). Kinda curious what solutions HN readers prefer for handling this. E.g. a lot of Rubyists use BackgrounDRb, but I prefer my little Looper.rb.

1 comment

thwartedalmost 16 years ago
cron. Should exist on every UNIX system, the most common syntax is standardized (you can even call it a DSL if you want), there are multiple implementations, it supports complex command lines, its jobs can be written in any language, it is well documented, and its limitations and security are well understood.
评论 #631053 未加载