使用swoole框架还用 nginx吗
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用swoole框架还用 nginx吗相关的知识,希望对你有一定的参考价值。
参考技术A 建议nginx+swoole,因为swoole框架提供的WebServer对Http的支持还不够完善。nginx通过proxy_pass转发请求到swoole的WebServer,swoole框架的代码仅提供应用服务器功能。框架中集成swoole扩展怎么使用
参考技术Aswoole扩展是PHP扩展。php swoole扩展,PHP语言的高性能网络通信框架,提供了PHP语言的异步多线程服务器,异步TCP/UDP网络客户端,异步MySQL,数据库连接池,AsyncTask,消息队列,毫秒定时器,异步文件读写,异步DNS查询。
1、下载swoole源码包
[root@nginx ~]# wget
2、解压进入swoole文件夹
[root@nginx ~]# tar -zxvf swoole-1.7.17-stable
[root@nginx ~]# cd swoole-src-swoole-1.7.17-stable/
3、编译安装swoole
[root@nginx swoole-src-swoole-1.7.17-stable]# phpize
[root@nginx swoole-src-swoole-1.7.17-stable]# ./configure
[root@nginx swoole-src-swoole-1.7.17-stable]# make && make install
4、php.ini配置文件加载swoole.so模块
[root@nginx swoole-src-swoole-1.7.17-stable]# vi /usr/local/php/lib/php.ini
注意 php命令行运行和浏览器运行的配置文件不一样。
php 命令行的配置:
[root@nginx swoole-src-swoole-1.7.17-stable]# php --ini
Configuration File (php.ini) Path: /usr/local/lib
Loaded Configuration File: /usr/local/lib/php.ini//配置文件
Scan for additional .ini files in: (none)
Additional .ini files parsed: (none)
5、查看swoole模块是否已经安装成功
[root@nginx swoole-src-swoole-1.7.17-stable]# php -m
6、编写服务端httpServer.php文件并运行
$serv = new swoole_server("127.0.0.1", 9501);
$serv->on(\'connect\', function ($serv, $fd)
echo "Client:Connect.\\n";
);
$serv->on(\'receive\', function ($serv, $fd, $from_id, $data)
$serv->send($fd, \'Swoole: \'.$data);
);
$serv->on(\'close\', function ($serv, $fd)
echo "Client: Close.\\n";
);
$serv->start();
运行httpServer.php
[root@nginx swoole-src-swoole-1.7.17-stable]# php httpServer.php
7、用telnet测试
[root@nginx ~]# telnet 127.0.0.1 9501
Trying 127.0.0.1...
Connected to 127.0.0.1.
Escape character is \'^]\'.
hello 客户端
Swoole: hello 服务端
来源:PHP swoole扩展安装和使用-
20170819 13:57
以上是关于使用swoole框架还用 nginx吗的主要内容,如果未能解决你的问题,请参考以下文章