php 开启 队列扩展,PHP扩展Swoole实现实时异步任务队列

在打算放置脚本的目录(你也可以自行新建)新建Server.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

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的方式异步执行。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值