Search Results

10
votes

Speeding Up Python

Rather than just punting to C, I'd suggest: Make your code count. Do more with fewer executions of lines: Change the algorithm to a faster one. It doesn't need to be fancy to …
1
vote

How often do you worry about how many if cases will need to be processed?

Rather than answer the PHP question, I'll answer a bit more generally. It doesn't apply directly to PHP as it will go through some kind of interpretation. Many compilers can convert to and …
0
votes

Speeding Up Java

Here is an (older) document by Peter Sestoft which is worth reading: Performance in java. Some of the advice is p …