The message-queue tag has no wiki summary.
3
votes
3answers
129 views
NoSQL Document Database as a Message Queue
I am considering using a NoSQL Document database as a messaging queue.
Here is why:
I want a client to post a message (some serialized object) to the server and not have to wait for a synchronous ...
2
votes
2answers
124 views
How do I document a communication protocol on top of message queues and channels?
I'm working on a large project at the moment and I'm trying to document the communication protocol that sits on top of a message queue middleware.
The documentation is intended for another ...
0
votes
1answer
112 views
Other than MSMQ, what is the easiest messaging queue to get installed on Windows? [closed]
When working with a fairly average team (limited knowledge with the latest and greatest), what would be the most ideal messaging queue to use in a windows environment?
Something that installs easily ...
0
votes
1answer
225 views
Scheduling Thousands of *Recurring* Jobs
I'm looking for general approaches and ideally libraries/tools for scheduling many thousands of recurring jobs.
A simple example is a feed aggregator, where I'd want to repeatedly poll thousands of ...
5
votes
4answers
2k views
When to use Advanced Message Queuing Protocol like RabbitMQ?
Can somebody explain me in what use-cases I should consider using AMQP like e.g. RabbitMQ? What are the pros and cons?
1
vote
2answers
165 views
Write own messaging system vs. utilize existing ones
We are trying to have our own startup, with a middleware application to glue small applications with enterprise legacy systems.
for such middle-ware to function properly, we will need some sort of ...
3
votes
4answers
447 views
Which framework is durable and has a HA message bus?
I'm looking for a messaging framework for a distributed financial application that should meet the following requirements:
No data loss or duplication, hence, a message should be sent exactly once ...
3
votes
2answers
139 views
How to solve an event-queue problem in a computer emulator in Java
I'm writing a low-level emulator (in Java) of the IBM 1620, a late-50s computer. By "low level," I mean that the lowest observable unit of work is the 20-microsecond "trigger" -- machine instructions ...
0
votes
4answers
681 views
Online Poker Game Programming [closed]
I am trying to write a massive online multiplayer client for a poker site, where one user can be on a Flash client and the other on say an iOS client (iPhone / iPad), and would like to know how can ...
5
votes
2answers
286 views
Implementation of communication between packages (Java)
I'm making a project with 5 packages. The packages can communicate with each other by sending Messages to a central MessageQueue in the Main package and that MessageQueue takes care of all the ...
9
votes
1answer
1k views
What are the solutions to the Distributed Queue problem?
I am trying to learn more about the various ways that the problem of a Distributed Queue may be solved. So I would like know what products, services, implementations and research papers that are ...
9
votes
2answers
205 views
Product agnostic book on Message Queues?
Are there any recommendations for book(s) that are largely agnostic (with examples of MQ implementations is fine) on vendor but go to great details on the architecture, management, nomenclature, ...