| Crates.io | gfcgi |
| lib.rs | gfcgi |
| version | 0.4.3 |
| created_at | 2016-05-03 20:46:50.390376+00 |
| updated_at | 2017-01-03 22:28:56.87613+00 |
| description | Native Rust library for FastCGI with multithreading and multiplexing support |
| homepage | |
| repository | https://github.com/Gedweb/rust-gfcgi.git |
| max_upload_size | |
| id | 4965 |
| size | 25,692 |
gfcgi a native Rust library for FastCGI.
Library is supporting multithreaded socket listener and HTTP-instances multiplexed onto a single connection.
Documentation is here.
FastCGI it's great solutions to handling HTTP-requests without overhead. Completely supporting HTTP or HTTPS by any popular web-servers.
socket
└─stream
├─connection
└─handler (request)
├─read headers
├─optional: read body
├─optional: build response
└─send response