Search Results

3
votes

How to improve garbage collection performance?

The single most important aspect is to minimize the allocation rate. Whenever an object is allocated, it needs GC later. Now of course, if the object is small or shortlived it will ge …
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 …