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

科技回声

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

GitHubTwitter

首页

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

资源链接

HackerNews API原版 HackerNewsNext.js

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

Ask HN: How have you used Amazon SQS successfully?

2 点作者 BlueSkies大约 17 年前
After reading up on Amazon Simple Queue Service (SQS), I have concerns about how to use it effectively. Ordering is not guaranteed and a read from a queue may sometimes show "empty" when in fact there are more entries to process (apparently has to do with how the data is distributed, per their documentation).<p>I'm interested in how other hackers have been able to make good use of SQS and possibly overcome these issues?

1 comment

ropiku大约 17 年前
I use it to separate and scale parts of my application.<p>More specifically I am building a continuous integration application in Ruby and using SQS as build and result queues from which EC2 instances pick up tasks, builds them then add into the result queue. I don't need ordering and don't mind a few seconds of latency.<p>PS: If you are interested in beta testing it please drop me a line.