Performance Summary
-
Runtime performance depends on different factors, such as CPU usage and memory.
-
LLVM languages compile to CPU specific instructions, which run very quickly on that CPU.
-
Memory is split into the stack and the heap.
-
Rust makes use of the stack, reducing the time taken to fetch information.
-
Rust has no garbage collection, so applications perform consistently.