内容简介:Cowboy 2.0.0 发布,Cowboy 是一个小巧快速的良好模块化的 HTTP Server 。其中良好的 clean module 使得我们可以扩展到多种网络协议之中,cowboy 自带的有 tcp 和 ssl ,而也有一些人提供了 smtp 等的扩展。 Co...
Cowboy 2.0.0 发布,Cowboy 是一个小巧快速的良好模块化的 HTTP Server 。其中良好的 clean module 使得我们可以扩展到多种网络协议之中,cowboy 自带的有 tcp 和 ssl ,而也有一些人提供了 smtp 等的扩展。
Cowboy是 Erlang / OTP 的 HTTP 服务器,支持 HTTP / 1.1、HTTP / 2 和 Websocket 协议。
Modules
Functions:
cowboy(3) - Listener management
cowboy_req(3) - Request and response
cowboy_router(3) - Router
cowboy_constraints(3) - Constraints
Protocols:
cowboy_http(3) - HTTP/1.1
cowboy_http2(3) - HTTP/2
cowboy_websocket(3) - Websocket
Handlers:
cowboy_static(3) - Static file handler
Behaviors:
cowboy_handler(3) - Plain HTTP handlers
cowboy_loop(3) - Loop handlers
cowboy_middleware(3) - Middlewares
cowboy_rest(3) - REST handlers
cowboy_stream(3) - Stream handlers
cowboy_websocket(3) - Websocket handlers
Middlewares:
cowboy_router(3) - Router middleware
cowboy_handler(3) - Handler middleware
Dependencies
ranch(7) - Socket acceptor pool for TCP protocols
cowlib(7) - Support library for manipulating Web protocols
ssl - Secure communication over sockets
crypto - Crypto functions
All these applications must be started before the cowboy
application. To start Cowboy and all dependencies at once:
{ok, _} = application:ensure_all_started(cowboy).
Environment
The cowboy
application does not define any application environment configuration parameters.
下载地址:
【声明】文章转载自:开源中国社区 [http://www.oschina.net]
以上所述就是小编给大家介绍的《Cowboy 2.0.0 发布,模块化的 HTTP 服务器》,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对 码农网 的支持!
猜你喜欢:- Android模块化改造以及模块化通信框架
- Laravel 模块化开发模块 – Caffienate
- 前端模块化架构设计与实现(二|模块接口设计)
- 模块化编程的实践者 disconver 更新了用户模块
- ASP.NET Core模块化前后端分离快速开发框架介绍之4、模块化实现思路
- JavaScript模块化
本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
Introduction to Computation and Programming Using Python
John V. Guttag / The MIT Press / 2013-7 / USD 25.00
This book introduces students with little or no prior programming experience to the art of computational problem solving using Python and various Python libraries, including PyLab. It provides student......一起来看看 《Introduction to Computation and Programming Using Python》 这本书的介绍吧!