您好,欢迎来到三六零分类信息网!老站,搜索引擎当天收录,欢迎发信息
免费发信息
三六零分类信息网 > 舟山分类信息网,免费分类信息发布

使用php+swoole对client数据实时更新一

2024/8/9 7:28:45发布32次查看
如果想对一个列表做实时的更新,传统的做法是采用轮询的方式。以web为例,通过ajax定时请求服务端然后获取数据显示在页面。这种方式实现简单,缺点就是浪费资源。
http1.1新增加了对websocket的支持,这样就可以将被动展示转变为主动通知。也就是通过websocket与服务端保持持久链接,一旦数据发生变化,由server通知client数据有更新,然后再进行刷新等操作。这样就省去了很多不必要的被动请求,节省了服务器资源。
要实现一个webscoket的程序,首先需要使用支持html5的浏览器
if(ws === null){ var wsserver = 'ws://'+ location.hostname +':8888'; ws = new websocket(wsserver); ws.onopen = function(){ console.log(socket连接已打开); }; ws.onmessage = function(e){ console.log(message: + e.data); }; ws.onclose = function(){ console.log(socket连接已断开); }; ws.onerror = function(e){ console.log(error: + e.data); }; //离开页面时关闭连接 $(window).bind('beforeunload',function(){ ws.close(); } );}
这样就实现了一个client,不过事情还远没有结束。上面的代码只是简单的进行了连接,对话,关闭等基本动作。如果想和服务端进行通讯,必须要有更具体的方案。比如收到message时判断类型进行进一步操作。
服务端:此处采用swoole进行php服务端的websocket开发,使用swoole进行php的websocket开发非常简单,而且它还支持httpserver的支持。详细的介绍可以参考这里http://wiki.swoole.com/
$server = new swoole_websocket_server(0.0.0.0, 8888); $server->on('open', function (swoole_websocket_server $server, $request) { echo server: handshake success with fd{$request->fd}\n; }); $server->on('message', function (swoole_websocket_server $server, $frame) { echo receive from {$frame->fd}:{$frame->data},opcode:{$frame->opcode},fin:{$frame->finish}\n; $server->push($frame->fd, this is server); }); $server->on('close', function ($ser, $fd) { echo client {$fd} closed\n; }); $server->start();
ps.swoole是一个php的扩展,安装方式可以参考这里http://git.oschina.net/matyhtf/swoole
先写到这里,下一篇会写一些更具体的操作
以上就介绍了使用php+swoole对client数据实时更新一,包括了方面的内容,希望对php教程有兴趣的朋友有所帮助。
舟山分类信息网,免费分类信息发布

VIP推荐

免费发布信息,免费发布B2B信息网站平台 - 三六零分类信息网 沪ICP备09012988号-2
企业名录