Furthermore, using a "slow" language for big parts of the code can make the whole project faster: size matters as an input into performance. A compact bytecode executed by a small interpreter thrashes the cache and memory hierarchy a lot less than tons and tons of ahead-of-time-compiled native code.
Use high-level interpreted languages to make your life easier, but also use them to make the page cache's life easier.
Use high-level interpreted languages to make your life easier, but also use them to make the page cache's life easier.