[Catalyst] A Perl Message Queue?

Perrin Harkins perrin at elem.com
Thu Aug 23 20:58:08 GMT 2007


On 8/23/07, Ash Berlin <ash_cpan at firemirror.com> wrote:
> Don't use a DB as the backing store for a message queue if you will ever
> need to pass a lot of messages thought it - you're just asking for
> trouble doing it that way.

Like most things, it depends.  If you need ACID properties for your
messages, using a database will be a lot easier than building your own
special-purpose ACID database.  And you probably already have some
work invested in making your RDBMS scale, so it doesn't add a new
point of failure.

But sure, if you have the money for commercial IBM stuff, it works.
Some of the open source Java solutions may be viable too.

- Perrin



More information about the Catalyst mailing list