Home > Article > Backend Development > Design ideas and implementation plans for message distribution and task scheduling of queues in PHP and MySQL
Design ideas and implementation plans for message distribution and task scheduling of queues in PHP and MySQL
1. Introduction
With the continuous expansion of the scale of Internet applications With the increasing needs of users, the concurrent processing and task scheduling capabilities of the system have become an important consideration. Queues are a commonly used solution that can effectively distribute messages and schedule tasks. This article will introduce how to design and implement queue message distribution and task scheduling in PHP and MySQL.
2. Design Ideas
When designing the message distribution and task scheduling system of the queue, the following aspects need to be considered:
3. Implementation plan
Message storage
Create a message storage table in MySQL with the following structure:
CREATE TABLE queue ( id INT AUTO_INCREMENT PRIMARY KEY, data TEXT, created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP );
Message When sending, insert the message content and current time into this table.
When receiving messages, read unprocessed messages from the table in order of creation time.
Code example for publishing a message:
$redis = new Redis(); $redis->connect('127.0.0.1', 6379); $redis->publish('channel', 'message');
Code example for subscribing to a message:
$redis = new Redis(); $redis->connect('127.0.0.1', 6379); $redis->subscribe(['channel'], function ($redis, $channel, $message) { // 处理消息的逻辑 echo $message; });
Task scheduling
Task scheduling can be used To implement scheduled tasks, for example, use Linux crontab to execute PHP scripts regularly.
Create a task table in MySQL with the following structure:
CREATE TABLE tasks ( id INT AUTO_INCREMENT PRIMARY KEY, command VARCHAR(255), created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP );
Code example for adding a task:
$command = 'php /path/to/script.php'; $pdo = new PDO('mysql:host=localhost;dbname=mydb', 'username', 'password'); $stmt = $pdo->prepare('INSERT INTO tasks (command) VALUES (?)'); $stmt->execute([$command]);
Code example for scheduled task:
schedule.php的代码示例:$pdo = new PDO('mysql :host=localhost;dbname=mydb', 'username', 'password');
$stmt = $pdo->query('SELECT * FROM tasks ORDER BY created_at ASC');
$tasks = $stmt->fetchAll(PDO::FETCH_ASSOC);
foreach ($tasks as $task) {
exec($task['command']);
$pdo->query(' DELETE FROM tasks WHERE id = ' . $task['id']);
}
The above is the detailed content of Design ideas and implementation plans for message distribution and task scheduling of queues in PHP and MySQL. For more information, please follow other related articles on the PHP Chinese website!