Size: 828
Comment:
|
Size: 949
Comment:
|
Deletions are marked like this. | Additions are marked like this. |
Line 13: | Line 13: |
|| Keep Alive || Time (sec) || Requests || || True || 0.301 || 165 || || False || 0.161 || 45 || |
|| Keep Alive || Time (sec) || Requests || Requests per/sec || || True || 0.301 || 165 || 548 || || False || 0.161 || 45 || 280 || |
Line 17: | Line 17: |
The following README files explains the test condition. (Note: It's very out of date) |
AsyncoreHTTPServer
This is a small side project I actually did for work. I wrapped asyncore to be an server and request handler. It can be used in much the same way as SimpleHTTPServer though the API is a bit different. It is still a work in progress, but is running, in its current form, in a production environment. It is for the most part HTTP/1.1 compliant and can be used as a RESTful server.
The following file can be used to run tests on the AsyncoreHTTPServer module.
The current results of these tests are listed below:
Keep Alive |
Time (sec) |
Requests |
Requests per/sec |
True |
0.301 |
165 |
548 |
False |
0.161 |
45 |
280 |
The following README files explains the test condition. (Note: It's very out of date)