laravel 使用RabbitMQ作为消息中间件

先搞定环境,安装amqp扩展

确保已安装rabbitmq-c-dev

比如 可以使用apk add rabbmit-c-dev安装

cd ~
wget http://pecl.php.net/get/amqp-1.10.2.tgz
tar -zxf amqp-1.10.2.tgz
cd amqp-1.10.2
phpize
./configure
make && make install
cd ~
rm -rf amqp-1.10.2*
重启php,php -m查看是否成功安装amqp。

开启以下步骤:

1、Composer安装laravel-queue-rabbitmq

composer require vladimir-yuldashev/laravel-queue-rabbitmq

2、在config/app.php文件中,providers中添加:
 

VladimirYuldashev\LaravelQueueRabbitMQ\LaravelQueueRabbitMQServiceProvider::class,

3、在app/config/queue.php配置文件中的connections数组中加入以下配置

'rabbitmq' => ['driver' => 'rabbitmq','dsn' => env('RABBITMQ_DSN', null),/** Could be one a class that implements \Interop\Amqp\AmqpConnectionFactory for example:*  - \EnqueueAmqpExt\AmqpConnectionFactory if you install enqueue/amqp-ext*  - \EnqueueAmqpLib\AmqpConnectionFactory if you install enqueue/amqp-lib*  - \EnqueueAmqpBunny\AmqpConnectionFactory if you install enqueue/amqp-bunny*/'factory_class' => Enqueue\AmqpLib\AmqpConnectionFactory::class,'host' => env('RABBITMQ_HOST', '127.0.0.1'),'port' => env('RABBITMQ_PORT', 5672),'vhost' => env('RABBITMQ_VHOST', '/'),'login' => env('RABBITMQ_LOGIN', 'guest'),'password' => env('RABBITMQ_PASSWORD', 'guest'),'queue' => env('RABBITMQ_QUEUE', 'default'),'options' => ['exchange' => ['name' => env('RABBITMQ_EXCHANGE_NAME'),/** Determine if exchange should be created if it does not exist.*/'declare' => env('RABBITMQ_EXCHANGE_DECLARE', true),/** Read more about possible values at https://www.rabbitmq.com/tutorials/amqp-concepts.html*/'type' => env('RABBITMQ_EXCHANGE_TYPE', \Interop\Amqp\AmqpTopic::TYPE_DIRECT),'passive' => env('RABBITMQ_EXCHANGE_PASSIVE', false),'durable' => env('RABBITMQ_EXCHANGE_DURABLE', true),'auto_delete' => env('RABBITMQ_EXCHANGE_AUTODELETE', false),'arguments' => env('RABBITMQ_EXCHANGE_ARGUMENTS'),],'queue' => [/** Determine if queue should be created if it does not exist.*/'declare' => env('RABBITMQ_QUEUE_DECLARE', true),/** Determine if queue should be binded to the exchange created.*/'bind' => env('RABBITMQ_QUEUE_DECLARE_BIND', true),/** Read more about possible values at https://www.rabbitmq.com/tutorials/amqp-concepts.html*/'passive' => env('RABBITMQ_QUEUE_PASSIVE', false),'durable' => env('RABBITMQ_QUEUE_DURABLE', true),'exclusive' => env('RABBITMQ_QUEUE_EXCLUSIVE', false),'auto_delete' => env('RABBITMQ_QUEUE_AUTODELETE', false),'arguments' => env('RABBITMQ_QUEUE_ARGUMENTS'),],],/** Determine the number of seconds to sleep if there's an error communicating with rabbitmq* If set to false, it'll throw an exception rather than doing the sleep for X seconds.*/'sleep_on_error' => env('RABBITMQ_ERROR_SLEEP', 5),/** Optional SSL params if an SSL connection is used* Using an SSL connection will also require to configure your RabbitMQ to enable SSL. More details can be founds here: https://www.rabbitmq.com/ssl.html*/'ssl_params' => ['ssl_on' => env('RABBITMQ_SSL', false),'cafile' => env('RABBITMQ_SSL_CAFILE', null),'local_cert' => env('RABBITMQ_SSL_LOCALCERT', null),'local_key' => env('RABBITMQ_SSL_LOCALKEY', null),'verify_peer' => env('RABBITMQ_SSL_VERIFY_PEER', true),'passphrase' => env('RABBITMQ_SSL_PASSPHRASE', null),],],

4、修改 .env 文件


QUEUE_CONNECTION=rabbitmq    #这个配置env一般会有先找到修改为这个#以下是新增配置RABBITMQ_HOST=rabbitmq  #mq的服务器地址,我这里用的是laradock,具体的就具体修改咯
RABBITMQ_PORT=5672  #mq的端口
RABBITMQ_VHOST=/
RABBITMQ_LOGIN=guest    #mq的登录名
RABBITMQ_PASSWORD=guest   #mq的密码
RABBITMQ_QUEUE=queue_name   #mq的队列名称

5、创建任务类
php artisan make:job Queue
执行之后会生成一个文件app/Jobs/Queue.php

例子:

<?phpnamespace App\Jobs;use App\Entities\Posts;
use Illuminate\Bus\Queueable;
use Illuminate\Foundation\Bus\Dispatchable;
use Illuminate\Queue\SerializesModels;
use Illuminate\Queue\InteractsWithQueue;
use Illuminate\Contracts\Queue\ShouldQueue;class Queue  implements ShouldQueue
{use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;private $data;/*** Queue constructor.* @param $data*/public function __construct($data){$this->data = $data;}/*** Execute the job.** @return void*/public function handle(){try{$insert = ['title'=>$this->data->title,'author_id'=>$this->data->author_id,'content'=>$this->data->content,'description'=>$this->data->description,];$result = Posts::create($insert);echo json_encode(['code' => 200, 'msg' => $result]);}catch (\Exception $exception) {echo json_encode(['code'=>0,'msg'=>$exception->getMessage()]);}}
}

7、消费队列
执行命令进行消费:
php artisan queue:work rabbitmq
效果如下:

root@9e99cf9fba73:/var/www/blog# php artisan  queue:work rabbitmq
[2018-12-24 07:34:32][5c208bf66e63b3.56379160] Processing: App\Jobs\Queue
{"code":200,"msg":{"title":1,"author_id":2,"content":"\u5185\u5bb9","description":"\u63cf\u8ff0","updated_at":"2018-12-24 07:34:32","created_at":"2018-12-24 07:34:32","id":1}}[2018-12-24 07:34:32][5c208bf66e63b3.56379160] Processed:  App\Jobs\Queue
[2018-12-24 07:34:32][5c208bf66ff7c3.20969590] Processing: App\Jobs\Queue
{"code":200,"msg":{"title":2,"author_id":2,"content":"\u5185\u5bb92","description":"\u63cf\u8ff02","updated_at":"2018-12-24 07:34:32","created_at":"2018-12-24 07:34:32","id":2}}[2018-12-24 07:34:32][5c208bf66ff7c3.20969590] Processed:  App\Jobs\Queue
[2018-12-24 07:34:32][5c208bf6702695.93123122] Processing: App\Jobs\Queue
{"code":200,"msg":{"title":3,"author_id":2,"content":"\u5185\u5bb93","description":"\u63cf\u8ff03","updated_at":"2018-12-24 07:34:32","created_at":"2018-12-24 07:34:32","id":3}}[2018-12-24 07:34:32][5c208bf6702695.93123122] Processed:  App\Jobs\Queue
[2018-12-24 07:34:32][5c208bf6706e24.78015170] Processing: App\Jobs\Queue
{"code":200,"msg":{"title":4,"author_id":2,"content":"\u5185\u5bb94","description":"\u63cf\u8ff04","updated_at":"2018-12-24 07:34:32","created_at":"2018-12-24 07:34:32","id":4}}[2018-12-24 07:34:32][5c208bf6706e24.78015170] Processed:  App\Jobs\Queue
[2018-12-24 07:34:32][5c208bf6709be0.07998731] Processing: App\Jobs\Queue
{"code":200,"msg":{"title":5,"author_id":2,"content":"\u5185\u5bb95","description":"\u63cf\u8ff05","updated_at":"2018-12-24 07:34:32","created_at":"2018-12-24 07:34:32","id":5}}[2018-12-24 07:34:32][5c208bf6709be0.07998731] Processed:  App\Jobs\Queue

注意:使用这个laravel-queue-rabbitmq这个包需要开启sockets拓展,不然会报错

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/860178.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

vuex的深入学习[基于vuex3]----篇(三)

vuex的深入学习[基于vuex3]----篇(三) 这篇美团的博客非常好。直接看就行 https://tech.meituan.com/2017/04/27/vuex-code-analysis.html

Vue2中的render函数

Vue 推荐在绝大多数情况下使用模板来创建你的 HTML。然而在一些场景中&#xff0c;你真的需要 JavaScript 的完全编程的能力。这时你可以用render渲染函数&#xff0c;它比模板更接近编译器 。 在Vue2中&#xff0c;render函数是一个可选的、用于生成虚拟DOM的特殊函数。它是Vu…

2024年最新【交安】公路水运安全员备考题库。

46.(  )负责建筑施工企业安全生产许可证的颁发和管理&#xff0c;并接受国务院建设主管部门的指导和监督。 A.国务院建设主管部门 B.国务院安全生产监督管理部门 C.省、自治区、直辖市人民政府建设主管部门 D.省、自治区、直辖市人民政府安全生产监督管理部门 答案&…

变量在PHP中是如何使用的?

在PHP中&#xff0c;变量是用于存储数据的容器&#xff0c;可以存放各种类型的数据&#xff0c;如数字、文本字符串、布尔值等。PHP是一种弱类型语言&#xff0c;这意味着在使用变量时不需要事先声明其类型&#xff0c;PHP会根据变量的值自动将其转换为正确的数据类型。 定义变…

国际网络专线怎么开通?

在全球化日益加速的今天&#xff0c;企业越来越需要稳定、高效的网络来支撑他们的跨国业务。国际网络专线&#xff0c;作为外贸企业、出海企业等拓展全球业务的关键基础设施&#xff0c;其重要性不言而喻。那么&#xff0c;企业如何才能开通国际网络专线呢&#xff1f;本文将详…

Amazon Q Developer 实战:从新代码生成到遗留代码优化(下)

简述 本文是使用 Amazon Q Developer 探索如何在 Visual Studio Code 集成编程环境&#xff08;IDE&#xff09;&#xff0c;从新代码生成到遗留代码优化的续集。在上一篇博客《Amazon Q Developer 实战&#xff1a;从新代码生成到遗留代码优化&#xff08;上&#xff09;》中…

深度学习初探:一场迷人的AI之旅

嘿&#xff0c;小伙伴们&#xff01;今天咱们来聊聊一个超级酷的话题——深度学习。虽然听起来有点高大上&#xff0c;但其实它也没那么神秘。接下来我们一起轻松入门&#xff0c;揭开深度学习的面纱。 1. 深度学习概述 首先&#xff0c;什么是深度学习呢&#xff1f;简单来说&…

docker常见问题-持续更新

docker 启动的问题解决 解决: 下载更新linux的win子系统, 重启就可以 WSL 2 installation is incomplete. 更加报错提示,猜测可能是我们使用的wsl2版本老了,需要我们自己手动更新一下,我们根据提示去微软官网下载最新版的wsl2安装后即可正常打开。更新包下载链接。 https://ws…

HBase:大数据时代的分布式存储利器

HBase&#xff1a;大数据时代的分布式存储利器 HBase&#xff1a;大数据时代的分布式存储利器1. HBase简介2. HBase特点3. HBase应用场景4. 总结 HBase&#xff1a;大数据时代的分布式存储利器 随着互联网和大数据技术的飞速发展&#xff0c;数据存储和计算需求呈现出爆炸式增…

Arduino - 串行绘图仪

Arduino - Serial Plotter Arduino - 串行绘图仪 In this tutorial, we will learn how to use the Serial Plotter on Arduino IDE, how to plot the multiple graphs. 在本教程中&#xff0c;我们将学习如何在Arduino IDE上使用串行绘图仪&#xff0c;如何绘制多个图形。 A…

Swift Combine — Operators(常用Filtering类操作符介绍)

目录 filter(_: )tryFilter(_: )compactMap(_: )tryCompactMap(_: )removeDuplicates()first(where:)last(where:) Combine中对 Publisher的值进行操作的方法称为 Operator&#xff08;操作符&#xff09;。 Combine中的 Operator通常会生成一个 Publisher&#xff0c;该 …

jupyter notebook的安装与使用

jupyter notebook的安装与使用 使用jupyter notebook有两种方法&#xff1a; 使用vscode里的插件直接运行jupyter程序。使用原生的基于浏览器网页的方式访问&#xff0c;需要在终端里开启jupyter的服务。 方法一&#xff1a; VSCODE中使用jupyter 在vscode中新建.ipynb后缀…

webstorm无法识别@路径的问题,左键无法跳转

在项目根目录下创建 webstorm.config.js use strict; const webpackConfig require(vue/cli-service/webpack.config.js); module.exports webpackConfig;webstorm设置里找到以下位置&#xff0c;引入新建的 webstorm.config.js即可&#xff0c;不生效把webstorm重启一下

android Studio 无线开发调试: PC机远程安卓电脑 免费

背景 公司的安卓机比较大&#xff0c;还有连接着串口设备不好挪动。 但是遇到问题调试很麻烦。想找到一套远程调试方法。 实现 要求&#xff1a; adb android Studio 2023.3.1 安卓机IP:1928.168.1.228 直接用adb远程连接&#xff1a;adb connect 1928.168.1.228 默认端口…

springboot无法获取nacos中配置文件bug记录

项目使用版本 <spring-cloud.version>Hoxton.SR12</spring-cloud.version> <spring.cloud.alibaba.version>2.2.9.RELEASE</spring.cloud.alibaba.version> 连接同事启动的nacos获取配置文件 一直获取不到 &#xff0c; 经排查发现同事启动的nacos版…

【SQL】MySQL 常见存储引擎

MySQL 提供了多种存储引擎&#xff08;Storage Engine&#xff09;&#xff0c;每种存储引擎都有其独特的特性和适用场景。以下是 MySQL 中一些常见的存储引擎&#xff1a; InnoDB&#xff1a; 特点&#xff1a;支持事务&#xff08;ACID 特性&#xff09;、行级锁定、外键约束…

JavaScript倒序遍历数组:计算年度累积值

在 JavaScript 开发中&#xff0c;我们经常需要对数组中的数据进行特定顺序的处理。倒序 for 循环是一种常见的技术&#xff0c;它可以从数组的末尾开始向前遍历元素。这种技术特别适用于需要基于前一个元素的值来计算当前元素的场景。 示例场景&#xff1a;计算年度累积值 假…

HarmonyOS Next开发学习手册——ExtensionAbility

概述 EmbeddedUIExtensionAbility 是EMBEDDED_UI类型的ExtensionAbility组件&#xff0c;提供了跨进程界面嵌入的能力。 EmbeddedUIExtensionAbility需要和 EmbeddedComponent 一起配合使用&#xff0c;开发者可以在UIAbility的页面中通过EmbeddedComponent嵌入本应用的Embed…

读AI新生:破解人机共存密码笔记11智能爆炸

1. 大猩猩问题 1.1. 大约1000万年前&#xff0c;现代大猩猩的祖先创造了进化出现代人类的遗传谱系 1.1.1. 它们的物种基本上没有未来&#xff0c;除了我们屈尊所允许它们拥有的未来 1.1.2. 我们不希望在超级智能机器面前处于类似的地位 1.2. 大猩猩问题就是人类是否能在一个…

电脑提示msvcr120.dll丢失怎样修复

文件功能与重要性&#xff1a;msvcr120.dll 文件的功能和重要性体现在多个方面&#xff0c;以下是对其核心功能的详细分析&#xff1a; 运行时支持 msvcr120.dll 提供了运行时环境&#xff0c;使得使用 Microsoft Visual C 2013 编译的程序能够调用必要的运行时函数。这些函数…