br0sk/yii2-ironmq
最新稳定版本:0.1.3
Composer 安装命令:
composer create-project br0sk/yii2-ironmq
包简介
Yii2 wrapper for IronMQ V3
README 文档
README
A Yii2 extension for IronMQ V3
This is an extension for Yii2 that makes it easy to use IronMq V3.
Add it to the composer file
"require": {
"php": ">=5.4.0",
"yiisoft/yii2": "*",
"yiisoft/yii2-bootstrap": "*",
"yiisoft/yii2-swiftmailer": "*",
"br0sk/yii2-ironmq": "0.*",
},
You can configure it in your application components configuration like so:
'ironmq' => [
//Mandatory config values
'class' => 'br0sk\ironmq\IronMQ',
'projectId' => 'yourprojectid',
'token' => 'yourtoken'
//Optional config values
'protocol' => 'https',
'host' => 'mq-aws-us-east-1-1.iron.io',
'port' => '443',
'api_version' => '3'
],
note: You can find the project id and token in the HUD for your V3 queue if you log in here. The tokens can be found on their own page here here.
An example of typical usage:
//Push a message to the queue
$pushedMessage = Yii::$app->ironmq->postMessage("queue_name", "Test Message");
//Reserve a message from the queue to process it
$message = Yii::$app->ironmq->reserveMessage('queue_name');
//When processing is done remove the message from the queue
$deltedResult = Yii::$app->ironmq->deleteMessage('queue_name', $message->id, $message->reservation_id);
You can now use all the calls in the IronMQ API.
This extension is a wrapper for irom_mq_php
统计信息
- 总下载量: 387
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 2
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: BSD-3-Clause
- 更新时间: 2015-11-08