|
|
|
|
|
by withinboredom
751 days ago
|
|
Caddy “uses” more ram because Go is a garbage collected language. It can free tons of it, but that costs cpu cycles. It generally won’t spend too much time freeing memory until the system is under pressure. Because it’s Go, you can tune garbage collection to be super aggressive, at the expense of speed. |
|