使用curl快速测试
新建一个订阅者
打开一个终端访问subscribe
curl -X GET http://localhost:8082/activity?id=0
可以看到HTTP请求被阻塞
发布消息
打开另一个终端访问publish
curl -X POST http://localhost:8082/publish?id=0 -d "hello world"
订阅者收到消息
此时subscriber就可以收到字符串“Hello World”,完成HTTP请求。
curl -X GET http://localhost:8082/activity?id=0
一个简单测试就完成了。
通过这个例子,我们可以看出,如果订阅者没有收到消息,会被阻塞,直到发布者发布消息。当订阅者收到消息后,会立即断开。
再一起来看一下http header中信息
curl -X GET http://localhost:8082/activity?id=0 -verbose
这是终端会显示:
# curl -X GET http://localhost:8082/activity?id=0 -verbose * About to connect() to localhost port 8082 * Trying 127.0.0.1... * connected * Connected to localhost (127.0.0.1) port 8082 > GET /activity?id=0 HTTP/1.1 User-Agent: curl/7.12.1 (i386-redhat-linux-gnu) libcurl/7.12.1 OpenSSL/0.9.7a zlib/1.2.2 libidn/0.5.6 Host: localhost:8082 Pragma: no-cache Accept: */* Referer: rbose < HTTP/1.1 200 OK < Server: nginx/0.8.31 < Date: Thu, 07 Jan 2010 08:37:12 GMT < Content-Length: 33 < Last-Modified: Thu, 07 Jan 2010 08:37:10 GMT < Connection: keep-alive < Etag: 0 < Vary: If-None-Match, If-Modified-Since * Connection #0 to host localhost left intact * Closing connection #0 Hello world |
从响应的头部可以看到Last-Modified: Thu, 07 Jan 2010 08:37:10 GMT
这个就是发布者(publisher)上一次发布(publish)的时间
可以通过发送If-Modified-Since来获取指定时间之后的数据
curl -X GET -H "If-Modified-Since:Thu, 07 Jan 2010 08:37:10 GMT" http://localhost:8082/activity?id=0 –verbose
这时subscribe会重新被阻塞而不是接收下次publish的数据
到此,可以清晰的看出,nginx的push正是依靠这种“等待,断开,继续等待”,实现的长连接
相关推荐
1、最新版 nginx-http-flv-module(linux程序)-(程序版本:nginx1.23.2 & http-flv-module1.2.10) 2、内含说明文档,请下载查看。 3、请勿放置于中文路径下,否则无法启动
1、最新版 nginx-http-flv-module(linux程序)-(程序版本:nginx1.20 & http-flv-module1.2.9) ... 4、sbin/nginx -c conf/nginx.conf 备注:关注 https://blog.csdn.net/hbk3333?spm=1003.2020.3001.5449 获取最新版本
搭建ffmpeg+nginx+yasm流媒体服务器低延迟 一、流媒体服务器概念 流媒体服务器是指能够实时地传输和处理视频流的服务器,通常用于直播、监控、在线视频等应用场景中。搭建流媒体服务器需要选择合适的软件和硬件...
Nginx 开发手册文档 Nginx 是一个功能强大且灵活的 Web 服务器软件,可以作为 HTTP 服务器、反向代理服务器、邮件代理服务器、负载均衡器等。下面是 Nginx 的一些关键特性和功能: 1. HTTP 基础功能:Nginx 可以...
陶辉出品:深入Nginx100讲脑图
Nginx(发音为 "engine-x")是一个高性能的HTTP和反向代理服务器,它以事件驱动和异步非阻塞的方式运行,能够处理数以万计的并发连接,同时保持低内存占用。Nginx最初由俄罗斯的程序员Igor Sysoev开发,并在2004年...
访问`http://your_server_ip/info.php`,如果看到PHP信息页面,则表示Nginx与PHP已经成功集成。 10. **安全考虑**: 为了安全,建议关闭默认的Nginx欢迎页面,编辑`/etc/nginx/nginx.conf`,删除或注释掉`index....
本地开发有时候需要调试静态文件资源,无法直接访问,可以通过配置本地Nginx服务的方式来进行,顺便记录一下Nginx的配置步骤 安装 <!--通过 Brew 安装: --> brew install nginx <!--启动: --> brew ...
nginx命令参数用法详细介绍 nginx命令:启动nginx 在Windows上安装好nginx后,我们需要启动nginx服务,启动nginx服务的命令行操作主要有两种方式,即 C:/nginx-0.8.53>nginx.exe 或者 C:/nginx-0.8.53>start ...
test-nginx, 面向 Nginx C 模块和 OpenResty Lua库开发的数据驱动测试 电子邮件名称Test::Nginx - Nginx MODULE 和 Nginx/openresty库和应用程序的数据驱动测试脚手架 table-内容NAME描述用户指南使用 Test::Nginx ...
用户可以通过RTMP将视频流推送到Nginx服务器,服务器再通过HLS协议将流分段并提供给观众。FFmpeg可以用来处理源视频,将其转化为适合流化的格式,并在必要时进行转码。这样的系统特别适用于直播、教育、娱乐等领域,...
1、最新版 nginx-http-flv-module(windows_x64程序)-(程序版本:nginx1.23.2 & http-flv-module1.2.10) 2、内含说明文档,请下载查看。 3、请勿放置于中文路径下,否则无法启动
Windows 下使用 RunHiddenConsole 启动 nginx、php-fpm, https://www.nginx.com/resources/wiki/start/topics/examples/phpfastcgionwindows/
# Nginx 一般有两个版本,分别是稳定版和开发版,您可以根据您的目的来选择这两个版本的其中一个,下面是把 Nginx 安装到 /usr/local/nginx 目录下的详细步骤: cd /usr/local/src sudo wget ...
名称Test :: Nginx-数据驱动的测试支架,用于Nginx C模块以及基于Nginx / OpenResty的库和应用程序目录描述该发行版为Nginx C模块开发提供了两个测试模块: 测试:: Nginx ::套接字(强烈建议这样做。) 该库还...
nginx -t -c F:/nginx-1.12.2/conf/nginx.conf 测试nginx配置文件是否正确 start nginx nginx -s stop nginx -s quit nginx -s reload nginx -t 修改后的hosts文件放入c:\windows\system32\drivers\etc替换以前的...
Elastic Stack-EFK架构:采集Nginx与Tomcat日志等
Windows 下使用 RunHiddenConsole 启动 nginx、php-fpm, https://www.nginx.com/resources/wiki/start/topics/examples/phpfastcgionwindows/
实验环境: 一台Liunx服务器(内网可也以) ...执行命令: docker pull nginx //从docker自带的源把...docker run -itd --name nginx -p 5555:80 nginx //运行刚刚下载nginx的镜像,现在这个镜像是一个容器。修改name为