Can somebody help me better understand the possible uses for something like this?
Disque – a distributed message broker
21–30 of 96 posts
Re: Disque – a distributed message broker
#22Can somebody help me better understand the possible uses for something like this?
Re: Disque – a distributed message broker
#23Can somebody help me better understand the possible uses for something like this?
as a communication layer between modules or micro services or any distributed system. if you want to push global updates to a system, you can push a message out to a channel and all of the subscribers will get the message.
Re: Disque – a distributed message broker
#24Re: Disque – a distributed message broker
#25Are people pronouncing this word like "Diskqueue"?
I've assumed it's a phonetic play, and that it's pronounced "dis queue" as in "this queue."
From the README:
DIStributed QUEue but is also a joke with "dis" as negation (like in disorder) of the strict concept of queue, since Disque is not able to guarantee the strict ordering you expect from something called queue. And because of this tradeof it gains many other interesting things.
Re: Disque – a distributed message broker
#26Re: Disque – a distributed message broker
#27And there's a Ruby client for it already: https://rubygems.org/gems/disque
Re: Disque – a distributed message broker
#28Re: Disque – a distributed message broker
#29Any functional advantage to using this instead of something like rabbitmq?