|
|
|
|
|
by dorianniemiec
439 days ago
|
|
Go has larger ecosystem of libraries for building web servers. You have FrankenPHP for running PHP, Lego for automatic TLS, etc.
For Rust there is `tokio-rustls-acme` crate (used by Ferron) for automatic TLS. While for PHP there is a `php` crate that depends on unsupported PHP version. Ferron uses FastCGI for communicating with PHP-FPM daemon instead.
However, Go uses a garbage collector, unlike Rust, which has a borrow checker to ensure memory safety. |
|