定时器传参

$time_interval =3; $aa='1'; $aa='2'; \Workerman\Lib\Timer::add($time_interval, function($aa){print_r($aa);},$aa,true); 我传入的是$aa一个数组,但是打印出来一个值。外部传参,怎么传,我的方式对吗?...

lichao 发表与 2015-10-02 3213 浏览 1 回答
workerman接口安全

$class = $message_data;//类 $method = $message_data;//方法 $args = $message_data;//参数 if(file_exists(__DIR__.'/Controller/'.$class.'.class.php')) { require_once __DIR__.'/Controller/'.$...

lichao 发表与 2015-09-30 5067 浏览 1 回答
worker进程数设置

workerman模型中,如果由于worker进程数设置不够,可能会导致新来的请求无法及时处理吗?会发生什么情况?(不讨论AsyncTcpConnection那种方案)主要是想了解会有queue吗?这部分是wm处理还是系统处理?因为有时候worker可能只是某一时会不够,大多数时没问题,设置太大不好。...

aguai 发表与 2015-09-28 6115 浏览 2 回答
配置redis时,无法找到redis类,我确认已经安装redis扩展和redis服务器

启动时出错了 Fatal error: Class 'Redis' not found in /alidata/www/GatewayWorker/GatewayWorker/Lib/StoreDriver/Redis.php on line 21 WORKER EXIT UNEXPECTED E_ERROR Class 'Redis' not found in /alidata/www/GatewayWorker/...

h8h8 发表与 2015-09-23 7134 浏览 3 回答
关于start.php中的onConnect回调函数与event::onConnect的区别

发现在start.php中 $gateway->onConnect = function($connection) {...} 的回调函数中,使用memcached设置的缓存在 Event::onConnect($client_id) 中访问不到,必须用usleep(100000);休眠0.1毫秒才可以。 对于workerman的模型理解得不是很透彻,请问这两个函数是怎样的触发方式和顺序? 另外我了解到,wor...

fdream 发表与 2015-09-22 3515 浏览 1 回答
在timer中sendToClient浏览器不知道为什么接收不到

[attach]153[/attach] 页面上输出的clientid 和我event打印出来的是一样的, 可是我的浏览器就是没有输出 不知道哪里错了。...

雨儿 发表与 2015-09-22 3861 浏览 7 回答
关于安装分布式统计系统

下载了分布式统计系统的包安装成功了,并成功启动服务, 但是用http访问55757端口的时候,游戏器一直在转。有人遇到这样的问题吗?请问是什么原因? [attach]149[/attach] [attach]150[/attach]...

lchubin 发表与 2015-09-21 2687 浏览 1 回答
gw的外部存贮模式

gw是将连接关系信息保存在外部存贮上,为什么不单独建一个特别进程保存这些信息,gateway与worker专门与这个进程通讯即可,这样框架就不依赖外部实现?...

aguai 发表与 2015-09-19 2624 浏览 1 回答
在event连接mysql 一直报找不到类

第一个问题:我在event 写了一段连接数据库的,一直报找不到类 详见附件 第二个问题:我在PHP 后端传递了一个参数uid456 我在event能接收到吗?...

雨儿 发表与 2015-09-19 3917 浏览 1 回答
在非wm项目中我想在PHP后端及时推送消息

我的项目在前端html页面写一了一段JS var ws = new WebSocket('ws://120.25.218.139:8383'); ws.onmessage = function(e){ alert(e.data); }; 就能连上wm的oncontent方法了,但是我现在想要在后端连接wm自动弹出推送消息。看了手册 我在后端代码indexaction加载方法中写了 $clie...

雨儿 发表与 2015-09-18 4298 浏览 1 回答
SendBufferToWorker fail. The connections between Gateway and BusinessWorker are not read

CentOS 6.6 下,经常会出现连接不了的情况,刷新后又可以了。 日志有很多这样的记录: SendBufferToWorker fail. The connections between Gateway and BusinessWorker are not read 求助解决方法。...

lalala003 发表与 2015-09-17 6107 浏览 1 回答
Gateway/Workman模式下的消息"插队"情况

我使用Gateway/worker模式搭建了一个应用.其中gatway->count=4,worker->count=1.在实际使用中发现,在极少的情况下会发生消息(message)插队的情况.即clientA发送给服务器数据123456789,同时clientB发送给服务器987654321.但是服务器收到的数据是123459876543216789,即clientB的数据包插入在clientA数据包内...

wytj0304 发表与 2015-09-16 4995 浏览 8 回答
workerman退出状态

定时任务老是卡住不运行了,然后当定时任务不运行,我退出时,老是显示 worker exit with status 9 ,想问下这个状态码是什么意思?能否贴一个错误状态码列表呢?...

killhook 发表与 2015-09-16 5268 浏览 3 回答
workerman-chat

我在做一个webapp时,用到了workerman-chat做的聊天室,但在集成的时候遇到问题: Flash Player >= 10.0.0 is required 也就是说要想聊天室运行成功就必须得有一个10.0.0版本以上的flash player 那么我怎么才能解决或是避免这个问题呢,或者说workerman-chat必须要用到flash?...

avst 发表与 2015-09-15 3070 浏览 1 回答
关于链接问题

SendBufferToWorker fail. The connections between Gateway and BusinessWorker are not ready SendBufferToWorker fail. The connections between Gateway and BusinessWorker are not ready SendBufferToWorker fail. The c...

13141223060 发表与 2015-09-15 6549 浏览 1 回答
workerman 在后台运行一段时间后,客户端请求无响应。

workerman restart -d 在后台运行一段时间后(days),客户端请求无响应,求解决方案。...

woxiangfei 发表与 2015-09-15 4453 浏览 2 回答
Gateway::sendToClient()问题,代码已经贴上

Gateway::sendToClient();发送不了给单个用户,我是用谷歌游览器的 console 来发送指令的,群聊的信息能接收到,但是就是Gateway::sendToClient方法的信息就接收不到...

小小葵花 发表与 2015-09-14 3182 浏览 1 回答
Timer问题

在测试onMessage里面写Timer发现无法清除,这让我很郁闷。 代码1: use \GatewayWorker\Lib\Gateway; use \GatewayWorker\Lib\Store; use \GatewayWorker\Lib\Db; use \Workerman\Lib\Timer; class Event{ public static function onMessage($clie...

小吴大大 发表与 2015-09-14 4101 浏览 3 回答
压力测试显示Throughput: 0.00 [#/sec]

8核,tcp开了64个进程,压测显示 Throughput: 0.00 ...

commandoeer 发表与 2015-09-12 2722 浏览 5 回答

walkor

151271
积分
0
获赞数
0
粉丝数
2014-05-04 加入
×
🔝