


RabbitMQ and PHP (1) - RabbitMQ principles and operation examples
RabbitMQ is a popular open source message queuing system developed in erlang language and fully implements AMQP (Advanced Message Queuing Protocol). The website is: http://www.rabbitmq.com/ There are tutorials and example codes (Python and Java).
7af40ad162d9f2d36b6bf89fa8ec8a136327cc4c
The AMPQ protocol is conceptually complex in order to meet various message queue requirements. First of all, rabbitMQ starts without any configuration by default. It requires the client to connect, set up the switch, etc. to work. If these basic concepts are not clarified, problems will easily arise in subsequent programming design.
1.vhosts: Virtual host.
A RabbitMQ entity can have multiple vhosts, and user and permission settings are dependent on vhosts. For general PHP applications, no user permission settings are required. Just use the "/" that exists by default. Users can use the "guest" that exists by default. A simple configuration example:
$conn_args = array(
'host' => '127.0.0.1',
'port' => '5672',
'login' => 'guest',
'password ' => 'guest',
'vhost'=>'/'
);
2. connection and channel: Connection and channel
connection refers to the physical connection, there is a connection between a client and a server; Multiple channels can be established on a connection, which can be understood as logical connections. In general applications, one channel is enough, and there is no need to create more channels. Sample code:
//Create connection and channel
$conn = new AMQPConnection($conn_args);
if (!$conn->connect()) {
die("Cannot connect to the broker!n");
}
$channel = new AMQPChannel($conn);
3.exchange and routingkey: switch and routing key
In order to distinguish different types of messages, two concepts of switch and routing are set up. For example, send a message of type A to the switch named 'C1', and send a message of type B to the switch named 'C2'. When the client connects to C1 to process queue messages, it only gets type A messages. Furthermore, if there are a lot of type A messages, further refinement of the distinction is required. For example, if a client only processes messages of type A messages for K users, routingkey is used for this purpose.
$e_name = 'e_linvo'; //Switch name
$k_route = array(0=> 'key_1', 1=> 'key_2'); //Routing key
//Create switch
$ex = new AMQPExchange ($channel);
$ex->setName($e_name);
$ex->setType(AMQP_EX_TYPE_DIRECT); //direct type
$ex->setFlags(AMQP_DURABLE); //persistence
echo " Exchange Status:".$ex->declare()."n";
for($i=0; $i<5; ++$i){
echo "Send Message:".$ex-> publish($message . date('H:i:s'), $k_route[i%2])."n";
}
As you can see from the above code, when sending a message, as long as there is a "switch", it is enough . As for whether there is a corresponding processing queue behind the switch, the sender does not need to worry about it. routingkey can be an empty string. In the example, I use two keys to send messages alternately to make it easier to understand the role of routing key below.
For switches, there are two important concepts:
A, type. There are three types: Fanout type is the simplest, this model ignores the routing key; Direct type is the most used, using a certain routing key. Under this model, if you bind 'key_1' when receiving a message, you will only receive the message of key_1; the last one is Topic, which is similar to Direct, but supports wildcard matching, such as: 'key_*', it will accept key_1 and key_2. Topic looks nice, but it may lead to imprecision, so it is recommended to use Direct.
B, persistence. Switches that are specified for persistence can only be rebuilt upon restarting, otherwise the client needs to re-declare the generation.
A particularly clear concept is needed: the persistence of the switch does not equal the persistence of the message. Only messages in the persistence queue can be persisted; if there is no queue, the message has no place to store; the message itself also has a persistence flag when it is delivered. In PHP, the default message delivered to the persistence switch is a persistent message, no need ad hoc.
4.queue: Queue
Having talked so much, let’s talk about queue. In fact, the queue is only for the receiver (consumer) and is created by the receiver based on demand. Only when the queue is created, the switch will send newly received messages to the queue. The switch will not put messages before the queue is created. In other words, all messages sent before the queue is established are discarded. The picture below is clearer than the official RabbitMQ picture - Queue is part of ReceiveMessage.
024f78f0f736afc37053e415b219ebc4b7451266
Let’s look at an example of creating a queue and receiving messages:
$e_name = 'e_linvo'; //Switch name
$q_name = 'q_linvo'; //Queue name
$k_route = ''; //Routing key
//Create connection and channel
$conn = new AMQPConnection($conn_args);
if (!$conn->connect()) {
die("Cannot connect to the broker!n");
}
$channel = new AMQPChannel($conn);
//Create a switch
$ex = new AMQPExchange($channel);
$ex->setName($e_name);
$ex->setType(AMQP_EX_TYPE_DIRECT); / /direct type
$ex->setFlags(AMQP_DURABLE); //Persistence
echo "Exchange Status:".$ex->declare()."n";
//Create queue
$q = new AMQPQueue ($channel);
$q->setName($q_name);
$q->setFlags(AMQP_DURABLE); //Persistence
//Bind the switch and queue, and specify the routing key
echo 'Queue Bind : '.$q->bind($e_name, $k_route)."n";
//Receive messages in blocking mode
echo "Message:n";
$q->consume('processMessage', AMQP_AUTOACK) ; //Automatic ACK response
$conn->disconnect();
/**
* Consumption callback function
* Processing messages
*/
function processMessage($envelope, $queue) {
var_dump($envelope->getRoutingKey);
$msg = $envelope->getBody();
echo $msg."n"; //Processing messages
}
As you can see from the above example, the switch can be created by the message sender or the message consumer .
After creating a queue (line:20), the queue needs to be bound to the switch (line:25) for the queue to work. The routingkey is also specified here. Some information says "bindingkey", which is actually the same thing. Using two nouns is easy to confuse.
There are two ways to process messages:
A, one-time. Using $q->get([...]), it will return immediately regardless of whether the message is obtained or not. Generally, this method is used to process the message queue using polling;
B, blocking. Using $q->consum( callback, [...] ) the program will enter a continuous listening state. Each time a message is received, the function specified by the callback will be called once. It will not end until a certain callback function returns FALSE.
Regarding callback, here are a few more words: PHP's call_back supports the use of arrays, for example: $c = new MyClass(); $c->counter = 100; $q->consume( array($c, 'myfunc') ) This way you can call the processing class you wrote. The parameter definition of myfunc in MyClass is the same as that of processMessage in the above example.
In the above example, using $routingkey = '' means receiving all messages. We can change it to $routingkey = 'key_1', and you can see that the only content in the result is setting routingkey to key_1.
Note: routingkey = 'key_1' and routingkey = 'key_2' are two different queues. Assumption: client1 and client2 are both connected to the queue of key_1. After a message is processed by client1, it will not be processed by client2. Routingkey = '' is another alternative. client_all is bound to ''. After all the messages are processed, there will be no messages on client1 and client2.
In terms of program design, you need to plan the name of the exchange, how to use keys to distinguish different types of tags, and insert the message sending code where the message is generated. Back-end processing can start one or more clients for each key to improve the real-time nature of message processing. How to use PHP for multi-threaded message processing will be described in the next section.
For more message models, please refer to: http://www.rabbitmq.com/tutorials/tutorial-two-python.html
b03533fa828ba61e15fc0e5f4034970a304e59b4
http://nonfu.me/p/8833.html
The above introduces RabbitMQ and PHP (1) - the principles and operation examples of RabbitMQ, including relevant content. I hope it will be helpful to friends who are interested in PHP tutorials.

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics



The message "Your organization has asked you to change your PIN" will appear on the login screen. This happens when the PIN expiration limit is reached on a computer using organization-based account settings, where they have control over personal devices. However, if you set up Windows using a personal account, the error message should ideally not appear. Although this is not always the case. Most users who encounter errors report using their personal accounts. Why does my organization ask me to change my PIN on Windows 11? It's possible that your account is associated with an organization, and your primary approach should be to verify this. Contacting your domain administrator can help! Additionally, misconfigured local policy settings or incorrect registry keys can cause errors. Right now

Windows 11 brings fresh and elegant design to the forefront; the modern interface allows you to personalize and change the finest details, such as window borders. In this guide, we'll discuss step-by-step instructions to help you create an environment that reflects your style in the Windows operating system. How to change window border settings? Press + to open the Settings app. WindowsI go to Personalization and click Color Settings. Color Change Window Borders Settings Window 11" Width="643" Height="500" > Find the Show accent color on title bar and window borders option, and toggle the switch next to it. To display accent colors on the Start menu and taskbar To display the theme color on the Start menu and taskbar, turn on Show theme on the Start menu and taskbar

By default, the title bar color on Windows 11 depends on the dark/light theme you choose. However, you can change it to any color you want. In this guide, we'll discuss step-by-step instructions for three ways to change it and personalize your desktop experience to make it visually appealing. Is it possible to change the title bar color of active and inactive windows? Yes, you can change the title bar color of active windows using the Settings app, or you can change the title bar color of inactive windows using Registry Editor. To learn these steps, go to the next section. How to change title bar color in Windows 11? 1. Using the Settings app press + to open the settings window. WindowsI go to "Personalization" and then

Do you see "A problem occurred" along with the "OOBELANGUAGE" statement on the Windows Installer page? The installation of Windows sometimes stops due to such errors. OOBE means out-of-the-box experience. As the error message indicates, this is an issue related to OOBE language selection. There is nothing to worry about, you can solve this problem with nifty registry editing from the OOBE screen itself. Quick Fix – 1. Click the “Retry” button at the bottom of the OOBE app. This will continue the process without further hiccups. 2. Use the power button to force shut down the system. After the system restarts, OOBE should continue. 3. Disconnect the system from the Internet. Complete all aspects of OOBE in offline mode

Taskbar thumbnails can be fun, but they can also be distracting or annoying. Considering how often you hover over this area, you may have inadvertently closed important windows a few times. Another disadvantage is that it uses more system resources, so if you've been looking for a way to be more resource efficient, we'll show you how to disable it. However, if your hardware specs can handle it and you like the preview, you can enable it. How to enable taskbar thumbnail preview in Windows 11? 1. Using the Settings app tap the key and click Settings. Windows click System and select About. Click Advanced system settings. Navigate to the Advanced tab and select Settings under Performance. Select "Visual Effects"

We all have different preferences when it comes to display scaling on Windows 11. Some people like big icons, some like small icons. However, we all agree that having the right scaling is important. Poor font scaling or over-scaling of images can be a real productivity killer when working, so you need to know how to customize it to get the most out of your system's capabilities. Advantages of Custom Zoom: This is a useful feature for people who have difficulty reading text on the screen. It helps you see more on the screen at one time. You can create custom extension profiles that apply only to certain monitors and applications. Can help improve the performance of low-end hardware. It gives you more control over what's on your screen. How to use Windows 11

Many users will choose the Huawei brand when choosing smart watches. Among them, Huawei GT3pro and GT4 are very popular choices. Many users are curious about the difference between Huawei GT3pro and GT4. Let’s introduce the two to you. . What are the differences between Huawei GT3pro and GT4? 1. Appearance GT4: 46mm and 41mm, the material is glass mirror + stainless steel body + high-resolution fiber back shell. GT3pro: 46.6mm and 42.9mm, the material is sapphire glass + titanium body/ceramic body + ceramic back shell 2. Healthy GT4: Using the latest Huawei Truseen5.5+ algorithm, the results will be more accurate. GT3pro: Added ECG electrocardiogram and blood vessel and safety

Screen brightness is an integral part of using modern computing devices, especially when you look at the screen for long periods of time. It helps you reduce eye strain, improve legibility, and view content easily and efficiently. However, depending on your settings, it can sometimes be difficult to manage brightness, especially on Windows 11 with the new UI changes. If you're having trouble adjusting brightness, here are all the ways to manage brightness on Windows 11. How to Change Brightness on Windows 11 [10 Ways Explained] Single monitor users can use the following methods to adjust brightness on Windows 11. This includes desktop systems using a single monitor as well as laptops. let's start. Method 1: Use the Action Center The Action Center is accessible
