0
Fork 0
mirror of https://github.com/ninenines/cowboy.git synced 2025-07-14 20:30:23 +00:00

Switch the HTTP protocol to use binary packets instead of lists.

The server now does a single recv (or more, but only if needed)
which is then sent to erlang:decode_packet/3 multiple times. Since
most requests are smaller than the default MTU on many platforms,
we benefit from this greatly.

In the case of requests with a body, the server usually read at
least part of the body on the first recv. This is bufferized
properly and used when later retrieving the body.

In the case of pipelined requests, we can end up reading many
requests in a single recv, which are then handled properly using
only the buffer containing the received data.
This commit is contained in:
Loïc Hoguin 2011-05-05 14:03:39 +02:00
parent 6c1f73c53c
commit 29e71cf4da
6 changed files with 288 additions and 243 deletions

View file

@ -76,10 +76,10 @@ end_per_group(https, _Config) ->
init_http_dispatch() ->
[
{["localhost"], [
{["websocket"], websocket_handler, []},
{["headers", "dupe"], http_handler,
[{headers, [{"Connection", "close"}]}]},
{[<<"localhost">>], [
{[<<"websocket">>], websocket_handler, []},
{[<<"headers">>, <<"dupe">>], http_handler,
[{headers, [{<<"Connection">>, <<"close">>}]}]},
{[], http_handler, []}
]}
].