Home Database Redis Can redis be used as a message queue?

Can redis be used as a message queue?

Jul 05, 2019 pm 03:31 PM

Can redis be used as a message queue?

Application scenarios:

For example, flash sale. A large number of orders are written to the database instantly, causing the database to be unable to respond in time. At this time, you can use Redis as the message queue, write all the data that needs to be written to the Redis message queue first, and then start the php-cli process on the server to read the data in the queue in a loop and write it to the database asynchronously. Using redis as a message queue may cause message loss because there is no confirmation mechanism for message reception. Large programs should use something like RabitMQ as a professional message queue.

1. Use publish/subscribe method as message queue

Features: One message publisher (producer) can correspond to multiple message subscribers (consumers). When a message is published to the message queue, all message subscribers can receive the message. Suitable for distributed message distribution. The client waits for messages from the publish side in a blocking manner. Multiple consumers cannot speed up message consumption.

Message production:

$params =json_encode(['x_uid' => $x_uid, 'phone' => $phone]);
$redis->publish('test',$params); //test表示发布的频道名字
Copy after login

Message consumption (php-cli mode operation):

$redis = new Redis(); $redis->pconnect('127.0.0.1'); //必须用pconnect长连接
//设置redis连接永远不超时。默认60s超时断开连接 $redis->setOption(Redis::OPT_READ_TIMEOUT, -1);
 
$redis->subscribe(array('test'), 'callback'); //test表示频道名字,callback 回调函数名
functioncallback($redis, $chan, $msg){ //对收到的消息进行处理函数
$params = json_decode($msg,true);
....
}
Copy after login

The difference between pconnect and connect:

connect: connect after the script ends It was released.

pconnect: The connection is not released after the script ends, and the connection remains in the php-fpm process.

So using pconnect instead of connect can reduce the consumption of frequently establishing redis connections.

2. Use list as redis message queue

Features: A message producer corresponds to a message consumer. Multiple consumers can speed up message consumption.

Message production:

$redis =newRedis();
$redis->connect('127.0.0.1'); 
//将需要写入数据库的数据全部push到队列(复杂数据可以先json编码成字符串)
$list = json_encode(['x_uid' => $x_uid, 'phone' => $phone, 'goods_id' => $goodsId, 
'add_time' => time(), 'num_field' => $num_field]);
$redis->lpush('winer',$list);
Copy after login

Note: If brpop consumption data is not successfully written to the database, data loss will occur. When production data is strongly required, secondary backup should be done to redis or files.

Message consumption (php-cli mode operation):

Note: If MySQL does not actively close the connection, a connection will be automatically disconnected after up to eight hours.

<?php
//链接数据库
$conn = mysqli_connect("localhost","root","root");
if(!$conn){
die("连接数据库失败:". mysqli_error());
}
mysqli_select_db($conn,"api");
//字符转换,读库
mysqli_query($conn,"set character set &#39;utf8&#39;");
//写库
mysqli_query($conn,"set names &#39;utf8&#39;");
 
//连接本地的 Redis 服务
$redis =newRedis();
$redis->connect(&#39;127.0.0.1&#39;,6379);
//设置redis连接永远不超时。默认60s超时断开连接
$redis->setOption(Redis::OPT_READ_TIMEOUT,-1);
echo &#39;Listening...&#39;;
$i =1;
while(true){
$data = $redis->brpop(&#39;winer&#39;,0); // 0表示没有接收到参数的情况下,永远不超时断开
$info = json_decode($data[1],true);
$x_uid = $info[&#39;x_uid&#39;];
$phone = $info[&#39;phone&#39;];
$goods_id = $info[&#39;goods_id&#39;];
$add_time = $info[&#39;add_time&#39;];
$num_field = $info[&#39;num_field&#39;];
//将数组写入数据库、订单
$sql = "insert into hd_hengda11_order (`x_uid`,`phone`,`goods_id`,`add_time`) 
values ($x_uid,$phone,$goods_id,$add_time)"
$re = mysqli_query($conn,$sql);

echo $i.&#39;_ok||&#39;;
$i++;
}
?>
Copy after login

Others:

Flash sale scenarios to prevent oversold products:

1. Set the product quantity in the database to unsigned, that is, negative numbers are not allowed. When the item quantity is updated to a negative number, false is returned.

2. The quantity of the product is stored in the Redis list queue. Every time a rush is made, an element is popped out of the queue.

//存放商品数量的队列
for($j =1; $j <=10; $j++){ /设置商品数量为10
$re =Redis::lpush(gooods_count,1);
}
Copy after login

Judging product quantity logic

$count=Redis::lpop(&#39;gooods_count&#39;);
//$count = Redis::llen(&#39;gooods_count&#39;); //llen判断队列长度
if(!$count){
return&#39;已经抢光了哦&#39;;
}
Copy after login

For more Redis related knowledge, please visit the Redis usage tutorial column!

The above is the detailed content of Can redis be used as a message queue?. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How do I choose a shard key in Redis Cluster? How do I choose a shard key in Redis Cluster? Mar 17, 2025 pm 06:55 PM

The article discusses choosing shard keys in Redis Cluster, emphasizing their impact on performance, scalability, and data distribution. Key issues include ensuring even data distribution, aligning with access patterns, and avoiding common mistakes l

How do I implement authentication and authorization in Redis? How do I implement authentication and authorization in Redis? Mar 17, 2025 pm 06:57 PM

The article discusses implementing authentication and authorization in Redis, focusing on enabling authentication, using ACLs, and best practices for securing Redis. It also covers managing user permissions and tools to enhance Redis security.

How do I implement cache invalidation strategies in Redis? How do I implement cache invalidation strategies in Redis? Mar 17, 2025 pm 06:46 PM

The article discusses strategies for implementing and managing cache invalidation in Redis, including time-based expiration, event-driven methods, and versioning. It also covers best practices for cache expiration and tools for monitoring and automat

How do I use Redis for job queues and background processing? How do I use Redis for job queues and background processing? Mar 17, 2025 pm 06:51 PM

The article discusses using Redis for job queues and background processing, detailing setup, job definition, and execution. It covers best practices like atomic operations and job prioritization, and explains how Redis enhances processing efficiency.

How do I use Redis for pub/sub messaging? How do I use Redis for pub/sub messaging? Mar 17, 2025 pm 06:48 PM

The article explains how to use Redis for pub/sub messaging, covering setup, best practices, ensuring message reliability, and monitoring performance.

How do I monitor the performance of a Redis Cluster? How do I monitor the performance of a Redis Cluster? Mar 17, 2025 pm 06:56 PM

Article discusses monitoring Redis Cluster performance and health using tools like Redis CLI, Redis Insight, and third-party solutions like Datadog and Prometheus.

How do I use Redis for session management in web applications? How do I use Redis for session management in web applications? Mar 17, 2025 pm 06:47 PM

The article discusses using Redis for session management in web applications, detailing setup, benefits like scalability and performance, and security measures.

How do I secure Redis against common vulnerabilities? How do I secure Redis against common vulnerabilities? Mar 17, 2025 pm 06:57 PM

Article discusses securing Redis against vulnerabilities, focusing on strong passwords, network binding, command disabling, authentication, encryption, updates, and monitoring.

See all articles