support [srs-dolphin][srs-dolphin], the multiple-process SRS.
正在显示
1 个修改的文件
包含
6 行增加
和
1 行删除
| @@ -217,6 +217,7 @@ Supported operating systems and hardware: | @@ -217,6 +217,7 @@ Supported operating systems and hardware: | ||
| 217 | 1. [experiment] Support push MPEG-TS over UDP to SRS, read [bug #250][bug #250]. | 217 | 1. [experiment] Support push MPEG-TS over UDP to SRS, read [bug #250][bug #250]. |
| 218 | 1. [experiment] Support push RTSP to SRS, read [bug #133][bug #133]. | 218 | 1. [experiment] Support push RTSP to SRS, read [bug #133][bug #133]. |
| 219 | 1. [experiment] Support push flv stream over HTTP POST to SRS, read [wiki]([CN][v2_CN_Streamer2], [EN][v2_EN_Streamer2]). | 219 | 1. [experiment] Support push flv stream over HTTP POST to SRS, read [wiki]([CN][v2_CN_Streamer2], [EN][v2_EN_Streamer2]). |
| 220 | +1. [experiment] Support [srs-dolphin][srs-dolphin], the multiple-process SRS. | ||
| 220 | 1. [no-plan] Support <500ms latency, FRSC(Fast RTMP-compatible Stream Channel tech). | 221 | 1. [no-plan] Support <500ms latency, FRSC(Fast RTMP-compatible Stream Channel tech). |
| 221 | 1. [no-plan] Support RTMP 302 redirect [bug #92][bug #92]. | 222 | 1. [no-plan] Support RTMP 302 redirect [bug #92][bug #92]. |
| 222 | 1. [no-plan] Support multiple processes, for both origin and edge | 223 | 1. [no-plan] Support multiple processes, for both origin and edge |
| @@ -270,6 +271,7 @@ Compare SRS with other media server. | @@ -270,6 +271,7 @@ Compare SRS with other media server. | ||
| 270 | | Feature | SRS | NGINX | CRTMPD | FMS | WOWZA | | 271 | | Feature | SRS | NGINX | CRTMPD | FMS | WOWZA | |
| 271 | | ----------- | ------- | ----- | --------- | -------- | ------ | | 272 | | ----------- | ------- | ----- | --------- | -------- | ------ | |
| 272 | | Concurrency | 7.5k | 3k | 2k | 2k | 3k | | 273 | | Concurrency | 7.5k | 3k | 2k | 2k | 3k | |
| 274 | +|MultipleProcess| Experiment| Stable | X | X | X | | ||
| 273 | | RTMP Latency| 0.1s | 3s | 3s | 3s | 3s | | 275 | | RTMP Latency| 0.1s | 3s | 3s | 3s | 3s | |
| 274 | | HLS Latency | 10s | 30s | X | 30s | 30s | | 276 | | HLS Latency | 10s | 30s | X | 30s | 30s | |
| 275 | 277 | ||
| @@ -306,6 +308,7 @@ Compare SRS with other media server. | @@ -306,6 +308,7 @@ Compare SRS with other media server. | ||
| 306 | Remark: | 308 | Remark: |
| 307 | 309 | ||
| 308 | 1. Concurrency: The concurrency of single process. | 310 | 1. Concurrency: The concurrency of single process. |
| 311 | +1. MultipleProcess: SRS is single process, while [srs-dolphin][srs-dolphin] is a MultipleProcess SRS. | ||
| 309 | 1. HLS aonly: The HLS audio only streaming delivery. | 312 | 1. HLS aonly: The HLS audio only streaming delivery. |
| 310 | 1. BW check: The bandwidth check. | 313 | 1. BW check: The bandwidth check. |
| 311 | 1. Security: To allow or deny stream publish or play. | 314 | 1. Security: To allow or deny stream publish or play. |
| @@ -339,7 +342,7 @@ Remark: | @@ -339,7 +342,7 @@ Remark: | ||
| 339 | ## History | 342 | ## History |
| 340 | 343 | ||
| 341 | ### SRS 2.0 history | 344 | ### SRS 2.0 history |
| 342 | - | 345 | +* v2.0, 2015-05-28, support [srs-dolphin][srs-dolphin], the multiple-process SRS. |
| 343 | * v2.0, 2015-05-24, fix [#404](https://github.com/simple-rtmp-server/srs/issues/404) register handler then start http thread. 2.0.167. | 346 | * v2.0, 2015-05-24, fix [#404](https://github.com/simple-rtmp-server/srs/issues/404) register handler then start http thread. 2.0.167. |
| 344 | * v2.0, 2015-05-23, refine the thread, protocol, kbps code. 2.0.166 | 347 | * v2.0, 2015-05-23, refine the thread, protocol, kbps code. 2.0.166 |
| 345 | * v2.0, 2015-05-23, fix [#391](https://github.com/simple-rtmp-server/srs/issues/391) copy request for async call. | 348 | * v2.0, 2015-05-23, fix [#391](https://github.com/simple-rtmp-server/srs/issues/391) copy request for async call. |
| @@ -671,6 +674,7 @@ Performance benchmark history, on virtual box. | @@ -671,6 +674,7 @@ Performance benchmark history, on virtual box. | ||
| 671 | 674 | ||
| 672 | * See also: [Performance for x86/x64 Test Guide](https://github.com/simple-rtmp-server/srs/wiki/v1_CN_Performance) | 675 | * See also: [Performance for x86/x64 Test Guide](https://github.com/simple-rtmp-server/srs/wiki/v1_CN_Performance) |
| 673 | * See also: [Performance for RaspberryPi](https://github.com/simple-rtmp-server/srs/wiki/v1_CN_RaspberryPi) | 676 | * See also: [Performance for RaspberryPi](https://github.com/simple-rtmp-server/srs/wiki/v1_CN_RaspberryPi) |
| 677 | +* About multiple-process performance, read [srs-dolphin][srs-dolphin]. | ||
| 674 | 678 | ||
| 675 | ### Play RTMP benchmark | 679 | ### Play RTMP benchmark |
| 676 | 680 | ||
| @@ -853,6 +857,7 @@ Winlin | @@ -853,6 +857,7 @@ Winlin | ||
| 853 | [srs]: https://github.com/simple-rtmp-server/srs | 857 | [srs]: https://github.com/simple-rtmp-server/srs |
| 854 | [csdn]: https://code.csdn.net/winlinvip/srs-csdn | 858 | [csdn]: https://code.csdn.net/winlinvip/srs-csdn |
| 855 | [oschina]: http://git.oschina.net/winlinvip/srs.oschina | 859 | [oschina]: http://git.oschina.net/winlinvip/srs.oschina |
| 860 | +[srs-dolphin]: https://github.com/simple-rtmp-server/srs-dolphin | ||
| 856 | [gitlab]: https://gitlab.com/winlinvip/srs-gitlab | 861 | [gitlab]: https://gitlab.com/winlinvip/srs-gitlab |
| 857 | [v1_CN_Git]: https://github.com/simple-rtmp-server/srs/wiki/v1_CN_Git | 862 | [v1_CN_Git]: https://github.com/simple-rtmp-server/srs/wiki/v1_CN_Git |
| 858 | [v1_EN_Git]: https://github.com/simple-rtmp-server/srs/wiki/v1_EN_Git | 863 | [v1_EN_Git]: https://github.com/simple-rtmp-server/srs/wiki/v1_EN_Git |
-
请 注册 或 登录 后发表评论