Crates.io | async-fcgi |
lib.rs | async-fcgi |
version | 0.5.0 |
source | src |
created_at | 2020-06-20 11:20:45.892095 |
updated_at | 2024-03-03 11:52:39.605732 |
description | FastCGI library |
homepage | |
repository | https://github.com/User65k/async-fcgi |
max_upload_size | |
id | 255952 |
size | 166,569 |
FastCGI implementation in pure Rust.
The focus is on the webserver/client side, but the application/server side could be added in the future.
Developed for FlashRust Webserver with focus on
Tested with:
cargo run --example webserver --features="con_pool"
con_pool
should handle more than one connection :sweat_smile: and load balanceFCGIBody
should not block a RequestID and cancel the requestConnection
should handle overload error from FCGI appPullRequests are welcome BTW
Crate | Description | Difference to this |
---|---|---|
fastcgi-client | Async (tokio) client | Different API |
fastcgi | Synchronous Server | Synchronous. Only Server/App Side |
fastcgi-sdk | Bindings to the FastCGI SDK | Bindings |
gfcgi | abandoned | Only Server/App Side |
fcgi | Bindings | yanked |