Age | Commit message (Collapse) | Author | |
---|---|---|---|
2012-01-31 | Remove call to queue:len/1 | Paul Oliver | |
queue:len/1 is O(len(Q)) queue:out/1 is O(1) amortized, O(len(Q)) worst case Replace with a pattern match | |||
2012-01-31 | Removing travis-ci from the cowboy development toolkit | Loïc Hoguin | |
We've been having many recurring issues, some which were fixed, only to have other things broken again. Can't rely on a service that breaks all the time. | |||
2012-01-31 | Merge branch 'autobahn-suite' of https://github.com/klaar/cowboy | Loïc Hoguin | |
This needs python2 to be the default python in /usr/bin/python. | |||
2012-01-31 | Use queue() for managing wait queues in cowboy_listener | Loïc Hoguin | |
The previous solution was retrieving the last put connection and wasn't a real queue, so this solution should improve the overall latency under load. | |||
2012-01-31 | Refactor cowboy_listener for more consistency | Loïc Hoguin | |
2012-01-31 | Pass --no_native option to dialyzer to improve dialyzing times | Loïc Hoguin | |
Goes from 36s to 24s on my laptop. | |||
2012-01-31 | Add cowboy:get_protocol_options/1 and cowboy_set_protocol_options/2 | Loïc Hoguin | |
This allows any application to upgrade the protocol options without having to restart the listener. This is most useful to update the dispatch list of HTTP servers, for example. The upgrade is done at the acceptor level, meaning only new connections receive the new protocol options. | |||
2012-01-30 | Move max_connections check directly inside cowboy_listener | Loïc Hoguin | |
This is a big change in the internal cowboy API. This should not have any impact on existing applications as only the acceptor is expected to use these API calls. The function cowboy_listener:wait/3 has been removed. max_connections checking now occurs directly in cowboy_listener:add_connection/3. If the pool is full and the acceptor has to wait, then it doesn't return, waiting for a free space to be available. To accomodate these changes, it is now cowboy_listener that will inform the new connection that it is ready by sending {shoot, self()}. This should be a great improvement to the latency of responses as there is one less message to wait for before the request process can do its work. Overall the performance under heavy load should also be improved as we greatly reduce the number of messages sent between the acceptor and the listener process. | |||
2012-01-26 | Remove a leftover ct:print | Loïc Hoguin | |
2012-01-26 | Merge branch 'rest_delete_no_call' of https://github.com/bfrog/cowboy | Loïc Hoguin | |
2012-01-26 | Handle delete better when no delete_resource function is implemented | Tom Burdick | |
2012-01-25 | Add Autobahn test suite for websockets | Magnus Klaar | |
We're using the existing test suite for websocket servers from the Autobahn project to verify that out websockets implementation is sane. A CT test suite and python module wrapping the test suite has been added. The test suite is run when the 'make inttests' target is executed. | |||
2012-01-23 | Fix a case where request body wouldn't get cleaned up on keepalive | Loïc Hoguin | |
The body was still in the buffer that's being used for the next request and was thus used as a request, causing errors. | |||
2012-01-23 | Merge branch 'master' of https://github.com/bfrog/cowboy | Loïc Hoguin | |
2012-01-23 | added test for posting to a rest controller where forbidden returns true on ↵ | Tom Burdick | |
a keep alive socket | |||
2012-01-23 | Remove http_resp_body/0, inline it directly in the record definition | Loïc Hoguin | |
2012-01-23 | Rename the type http_status/0 to cowboy_http:status/0 | Loïc Hoguin | |
2012-01-23 | Remove http_cookies/0, inline it directly in the record definition | Loïc Hoguin | |
2012-01-23 | Rename the type http_header/0 to cowboy_http:header/0 | Loïc Hoguin | |
At the same time rename http_headers/0 to cowboy_http:headers/0. | |||
2012-01-23 | Rename the type http_version/0 to cowboy_http:version/0 | Loïc Hoguin | |
2012-01-23 | Rename the type http_uri/0 to cowboy_http:uri/0 | Loïc Hoguin | |
2012-01-23 | Rename the type http_method/0 to cowboy_http:method/0 | Loïc Hoguin | |
Exported types are much better than include files. | |||
2012-01-23 | Fix typespecs for calendar:datetime/0 in cowboy_http_static | Loïc Hoguin | |
2012-01-23 | Add {halt, Req, State} return value to most REST callbacks | Loïc Hoguin | |
Excluding generate_etag, last_modified, expires and variances. | |||
2012-01-23 | Rename a lot of HandlerState2 variables to HandlerState | Loïc Hoguin | |
2012-01-23 | Improve the return value for cowboy_http_rest:upgrade/4 | Loïc Hoguin | |
2012-01-23 | Improve the listener name in the README | Loïc Hoguin | |
2012-01-23 | Merge branch 'multipart' of https://github.com/nox/cowboy | Loïc Hoguin | |
Conflicts: src/cowboy_http_req.erl test/http_SUITE.erl | |||
2012-01-23 | Add multipart support | Anthony Ramine | |
2012-01-12 | Welcome to new developments with 0.5.0 | Loïc Hoguin | |
2012-01-09 | Update version to 0.4.00.4.0 | Loïc Hoguin | |
2012-01-09 | Make REST handlers' put_resource accept true or false return values | Loïc Hoguin | |
Followup to 0bb23f2400ed0b65834913c8522a978d986f1f92. As discussed in #119. | |||
2012-01-09 | Merge branch 'static-etag-hook' of https://github.com/klaar/cowboy | Loïc Hoguin | |
2012-01-09 | Add HTTP handler loops to the README | Loïc Hoguin | |
2012-01-07 | Add etag option to cowboy_http_static handler. | Magnus Klaar | |
2012-01-06 | Update AUTHORS | Loïc Hoguin | |
2012-01-06 | Update CHANGELOG | Loïc Hoguin | |
2012-01-06 | Make REST handlers' process_post accept true or false return values | Loïc Hoguin | |
They should return true when it has been processed successfully, or false otherwise, in which case a 500 error is sent. Fixes #119. | |||
2012-01-06 | Fix the stream_body_set_resp test | Loïc Hoguin | |
It was failing from time to time due to the response being sent as two separate packets. | |||
2012-01-06 | Fix handler crashes handling | Loïc Hoguin | |
We try to send a 500 error only if we didn't send the response headers yet. If they were, then we have no way to be sure the response was fully sent, nor should we assume anything about how this will be handled client-side, so we do nothing more and in both cases close the connection. | |||
2012-01-06 | Move the ensure_response call before ensure_body_processed | Loïc Hoguin | |
We want to reply as soon as possible. | |||
2012-01-06 | Merge branch 'issue-114-tests' of https://github.com/klaar/cowboy into ↵ | Loïc Hoguin | |
gracefully-handle-crashes Conflicts: test/http_SUITE.erl | |||
2012-01-05 | Merge branch 'static-updates' of https://github.com/klaar/cowboy | Loïc Hoguin | |
2012-01-05 | only run end_static_dir for http and https | Magnus Klaar | |
2012-01-05 | Add test and doc for content types function. | Magnus Klaar | |
2012-01-05 | Merge branch 'inet_parse_address_fix' of https://github.com/spawngrid/cowboy | Loïc Hoguin | |
2012-01-04 | inet_address:parse/1 does not accept binaries as an input, only strings | Yurii Rashkovskii | |
2012-01-04 | Add R15B to travis-ci's configuration file | Loïc Hoguin | |
2012-01-03 | Merge branch 'static-handler-split' of https://github.com/klaar/cowboy | Loïc Hoguin | |
2012-01-03 | Merge pull request #118 from klaar/travis-versions-fix | Loïc Hoguin | |
Remove R14B and R14B01 from .travis.yml |