Laravel8.5广播(redis驱动)

更新时间:2023-06-12 01:54:27 阅读: 评论:0

Laravel8.5⼴播(redis驱动)1. 创建laravel项⽬(8.5.18)
compor create-project --prefer-dist laravel/laravel  项⽬名(最新版)
// 安装predis扩展
compor require predis/predis
2. 配置修改
1)config\app.php
providers中 App\Providers\BroadcastServiceProvider::class取消注释
2) env⽂件中修改
// 队列驱动
QUEUE_DRIVER=redis
// ⼴播驱动
BROADCAST_DRIVER=redis
// 队列连接⽅式
QUEUE_CONNECTION=redis
// redis配置
REDIS_HOST=127.0.0.1
REDIS_PASSWORD=null
REDIS_PORT=6379
三星手机广告音乐
3) config\databa.php
// 修改 REDIS_CLIENT为predis
redis =>[
'client'=>env('REDIS_CLIENT','predis'),
.
....
]
// rediskey前缀移除
'prefix'=>env('REDIS_PREFIX', Str::slug(env('APP_NAME','laravel'),'_').'_databa_'),
3. 创建事件
php artisan make:event News
<?php
namespace App\Events;
u Illuminate\Broadcasting\Channel;
u Illuminate\Queue\SerializesModels;
u Illuminate\Foundation\Events\Dispatchable;
u Illuminate\Broadcasting\InteractsWithSockets;
u Illuminate\Contracts\Broadcasting\ShouldBroadcast;
class News implements ShouldBroadcast
{
英语国际音标u Dispatchable, InteractsWithSockets, SerializesModels;
public$message;
/**
* 创建⼀个新的事件实例
*
* @return void
*/简体转繁体
/
enough是什么意思/ public $broadcastQueue = 'news_queue';
public function__construct($message)
{
$this->message=$message;清明节用英语怎么说
}
/**
* 获取事件⼴播的频道.
*
* @return \Illuminate\Broadcasting\Channel|array
*/
public function broadcastOn()
{
return new Channel('news');
// return new PrivateChannel('channel-name');
}
/**
* 获取⼴播数据
*
* @return array
*/
public function broadcastWith(){
return['message'=>$this->message];
}
}
4. 配置routes\channels.php
Broadcast::channel('news',function()
{
return true;
});
5. 添加console/web路由 都可以
// routes/console.phpthicket
Artisan::command('bignews',function(){
broadcast(new\App\Events\News(date('Y-m-d h:i:s A').":a BIG NEWS!"));
$this->comment("news nt");
})->describe('Send news');
// routes/web.php
Route::get('/queue',function(){
broadcast(new\App\Events\News(date('Y-m-d h:i:s A').":a BIG NEWS!"));
});
6. 后端查看是否调通
1)项⽬根⽬录下执⾏ php artisan bignews 命令
2)消费news_queue队列
php artisan queue:work --queue=news_queue
3)安装websocket服务端
npm install -g laravel-echo-rver
laravel-echo-rver init  //初始化websocket服务端
laravel-echo-rver start  //启动(开启消费队列)
4)(停⽌消费队列)连接redis
redis-cli -h 127.0.0.1-p 6379
查看 keys *
7. 安装websocket客户端
npm install --save socket.io-client    //安装websocket客户端
npm install --save laravel-echo//安装websocket客户端封装laravel-echo 8. 1)修改resources/js/app.js
import Echo from 'laravel-echo'
window.io =require('socket.io-client');
window.Echo=new Echo({
broadcaster:'socket.io',
host: window.location.hostname +':6001'
host: window.location.hostname +':6001'
});
2)修改 webpack.mix.js
(如果在项⽬根⽬录下没有 fig.js 配置⽂件,你可以把它拷贝到根⽬录下,同时修改 package.json ⾥的npm脚本: cp node_modules/laravel-mix/fig.js ./)
mix.js('resources/js/app.js','public/js')// 新增
package.json 如下
{
gaga是什么意思"private":true,
"scripts":{
"dev":"npm run development",
"development":"mix",
"watch":"mix watch",
"watch-poll":"mix watch -- --watch-options-poll=1000",
"hot":"mix watch --hot",
"prod":"npm run production",
"production":"mix --production"
},
"devDependencies":{
"axios":"^0.21",
"laravel-mix":"^6.0.6",
"lodash":"^4.17.19",
"postcss":"^8.1.14"
},
"dependencies":{618是什么意思
"laravel-echo":"^1.10.0",
"socket.io-client":"^4.1.2"
}
}
3)终端执⾏
npm run dev
/
/ 如遇到mix命令未发现
// 执⾏
npm install laravel-mix@latest (安装最新版)
// 再次执⾏
npm run dev
mix命令未发现⽰例图
4)执⾏成功 ⽣成如下⽂件 public/js/app.js
9. public/js/app.js
创建 resources/views/broadcasting.blade.php ⽂件
{{--头部加⼊--}}
耀华国际
职称英语考试报名时间 2012<meta name="csrf-token" content="{{ csrf_token() }}">
{{--引⼊app.js--}}
<script src="js/app.js"></script>
{{--监听并输出--}}
<script>
//  news是频道 News是监听的事件名
window.channel('news').listen('.News',(e)=>{
console.log(e);
});
</script>
9. route配置
Route::get('/welcome',function(){
return view('broadcasting');
});
10. 在终端执⾏
laravel-echo-rver start //启动 laravel-echo-rver 连接socket php artisan queue:work    //消费队列
php artisan bigNews      //发送⼴播
11.

本文发布于:2023-06-12 01:54:27,感谢您对本站的认可!

本文链接:https://www.wtabcd.cn/fanwen/fan/78/933840.html

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。

标签:事件   安装   队列   消费
相关文章
留言与评论(共有 0 条评论)
   
验证码:
推荐文章
排行榜
Copyright ©2019-2022 Comsenz Inc.Powered by © 专利检索| 网站地图