本文实例讲述了PHP扩展Swoole实现实时异步任务队列。分享给大家供大家参考,具体如下:
假如要发100封邮件,for循环100遍,用户直接揭竿而起,什么破网站!
但实际上,我们很可能有超过1万的邮件。怎么处理这个延迟的问题?
答案就是用异步。把“发邮件”这个操作封装,然后后台异步地执行1万遍。这样的话,用户提交网页后,他所等待的时间只是“把发邮件任务请求推送进队列里”的时间。而我们的后台服务将在用户看不见的地方跑。
在实现“异步队列”这点上,有人采用MySQL表或者redis来存放待发送的邮件,然后,每分钟定时读取待发送列表,然后处理。这便是定时异步任务队列。但当前提交的任务要一分钟后才能执行,在某些实时性要求应用场景里还是不快。有些场景要求,只有一提交任务,便马上执行,但用户不需要等待返回结果。
本文将探讨用php扩展swoole实现实时异步任务队列的方案。
服务端
在打算放置脚本的目录(你也可以自行新建)新建Server.php,代码如下
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
<?php
class Server
{
private $serv ;
public function __construct()
{
$this ->serv = new swoole_server( "0.0.0.0" , 9501);
$this ->serv->set( array (
'worker_num' => 1, //一般设置为服务器CPU数的1-4倍
'daemonize' => 1, //以守护进程执行
'max_request' => 10000,
'dispatch_mode' => 2,
'task_worker_num' => 8, //task进程的数量
"task_ipc_mode " => 3, //使用消息队列通信,并设置为争抢模式
//"log_file" => "log/taskqueueu.log" ,//日志
));
$this ->serv->on( 'Receive' , array ( $this , 'onReceive' ));
// bind callback
$this ->serv->on( 'Task' , array ( $this , 'onTask' ));
$this ->serv->on( 'Finish' , array ( $this , 'onFinish' ));
$this ->serv->start();
}
public function onReceive(swoole_server $serv , $fd , $from_id , $data )
{
//echo "Get Message From Client {$fd}:{$data}\n";
// send a task to task worker.
$serv ->task( $data );
}
public function onTask( $serv , $task_id , $from_id , $data )
{
$array = json_decode( $data , true);
if ( $array [ 'url' ]) {
return $this ->httpGet( $array [ 'url' ], $array [ 'param' ]);
}
}
public function onFinish( $serv , $task_id , $data )
{
//echo "Task {$task_id} finish\n";
//echo "Result: {$data}\n";
}
protected function httpGet( $url , $data )
{
if ( $data ) {
$url .= '?' . http_build_query( $data );
}
$curlObj = curl_init(); //初始化curl,
curl_setopt( $curlObj , CURLOPT_URL, $url ); //设置网址
curl_setopt( $curlObj , CURLOPT_RETURNTRANSFER, 1); //将curl_exec的结果返回
curl_setopt( $curlObj , CURLOPT_SSL_VERIFYPEER, FALSE);
curl_setopt( $curlObj , CURLOPT_SSL_VERIFYHOST, FALSE);
curl_setopt( $curlObj , CURLOPT_HEADER, 0); //是否输出返回头信息
$response = curl_exec( $curlObj ); //执行
curl_close( $curlObj ); //关闭会话
return $response ;
}
}
$server = new Server();
|
客户端
启动服务后,让我们看看如何调用服务。新建测试文件Client_test.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
<?php
class Client
{
private $client ;
public function __construct()
{
$this ->client = new swoole_client(SWOOLE_SOCK_TCP);
}
public function connect()
{
if (! $this ->client->connect( "127.0.0.1" , 9501, 1)) {
throw new Exception(sprintf( 'Swoole Error: %s' , $this ->client->errCode));
}
}
public function send( $data )
{
if ( $this ->client->isConnected()) {
if (! is_string ( $data )) {
$data = json_encode( $data );
}
return $this ->client->send( $data );
} else {
throw new Exception( 'Swoole Server does not connected.' );
}
}
public function close()
{
$this ->client->close();
}
}
$data = array (
"url" => "http://192.168.10.19/send_mail" ,
"param" => array (
"username" => 'test' ,
"password" => 'test'
)
);
$client = new Client();
$client ->connect();
if ( $client ->send( $data )) {
echo 'success' ;
} else {
echo 'fail' ;
}
$client ->close();
|
在上面代码中,url即为任务所在地址,param为所需传递参数。
保存好代码,在命令行或者浏览器中执行Client_test.php,便实现了异步任务队列。你所填写的URL,将会在每次异步任务被提交后,以HTTP GET的方式异步执行。
希望本文所述对大家PHP程序设计有所帮助。
原文链接:https://www.cnblogs.com/tdalcn/p/9359816.html