PHP RabbitMQ Tutorial - Part Three: Work Queues
Publish/Subscribe
In this tutorial, we will use PHP with the php-amqplib library to implement a publish/subscribe system. This pattern differs from work queues, where each task is delivered to exactly one worker. Instead, we will broadcast messages to multiple consumers.
Prerequisites
This tutorial assumes RabbitMQ is installed and running on l ...
Posted on Thu, 20 Aug 2026 16:54:59 +0000 by aquila125
Implementing an Event Bus Pattern in Qt for Decoupled Communication
Event Bus Pattern Overview
The Event Bus pattern provides a publish-subscribe mechenism that enables loose coupling between components. Rather than maintaining direct references to subscribers, publishers dispatch events through a central mediator, and interested components register their interest at runtime. This architectural approach proves ...
Posted on Mon, 27 Jul 2026 16:20:00 +0000 by mtrp