How does php+redis+mysq handle high concurrency (example code)

不言
Release: 2023-04-03 16:26:01
Original
1889 people have browsed it

The content of this article is about how php redis mysq handles high concurrency (example code). It has certain reference value. Friends in need can refer to it. I hope it will be helpful to you.

1. Experimental environment
ubuntu, php, apache or nginx, mysql
2. Requirements
Now there is an interface that may appear When the amount of concurrency is relatively large, this interface is written in PHP. Its function is to receive the name field in the user's GET request, and then store this field in mysql. Now first put the data into the redis queue, and then let Redis regularly transfers these data to mysql.
2. Implementation steps
1. Create a new database test and data table test. The table creation statements are as follows

CREATE TABLE `test` ( `name` varchar(255) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf-8
Copy after login

1. Create a new index in /var/www/test. php, the content is as follows, and configure the virtual host to make it accessible.

connect('127.0.0.1', 6379); try { $res = $redis->LPUSH('name', $_REQUEST["name"]); } catch (Exception $e) { echo $e->getMessage(); }
Copy after login

2. Create a new redis.php file in the same directory, and pay attention to modifying the database password and other configurations. The content is as follows

pconnect('127.0.0.1',6379); $mysql=mysqli_connect("localhost","root","bnm"); mysqli_select_db($mysql,"test") or die("不能选择数据库"); if(!$mysql){ die("连接失败"); } while (true){ try{ $value = $redis->LPOP('name'); if(!$value){ echo "等待"; }else{ $sql="insert into test(name) values ('".$value."')"; $result=mysqli_query($mysql,$sql); if($result&&mysqli_affected_rows($mysql)>0){ echo "插入成功"; }else{ echo "插入失败:".mysqli_error($mysql); } } }catch(Exception $e){ echo $e->getMessage(); } sleep(1); }
Copy after login

3. Run the redis.php script file

nohup php redis.php &
Copy after login

4. Visit the index.php script file, such as: http://192.168.116.128/?name=33, and then check whether the data has been entered in mysql.

Recommended related articles:

What are the operations of PHP array functions? Application of php array function (with code)

thinkphp5 framework and Android implement QR code generation code

The above is the detailed content of How does php+redis+mysq handle high concurrency (example code). For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
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
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!