Using AMQP to collect events
Posted
by
synapse
on Stack Overflow
See other posts from Stack Overflow
or by synapse
Published on 2012-10-11T08:38:56Z
Indexed on
2012/10/11
9:37 UTC
Read the original article
Hit count: 232
Does AMQP has any advantages over an ad-hoc implementation for a simple stats gathering scenario? It works like this - clients send events (more than we care to put into persistent storage) to (several) web workers, the workers aggrregate them and write to a single database. I don't think I should consider using AMQP for this because I'll still need web workers to receive events from clients through HTTP and to publish them. Am I missing something?
© Stack Overflow or respective owner