89
votes
81answers
6k views
How to become a “faster” programmer?
My last job evaluation included just one weak point: timeliness. I'm already aware of some things I can do to improve this but what I'm looking for are some more.
Does anyone have tips or advice on …
81
votes
159answers
8k views
Biggest performance improvement you’ve had with the smallest change?
What's the biggest performance improvement you've had with the smallest change? For example, I once improved the performance of a certain page on a high-profile web app by a factor of 10, just by …
79
votes
13answers
4k views
Is DateTime.Now the best way to measure a function’s performance?
I need to find a bottleneck and need to accurately as possible measure time.
Is the following Code Snippet the best way to measure the performance?
DateTime startTime = DateTime.Now;
// Some …
60
votes
36answers
5k views
What is the most ridiculous pessimization you’ve seen?
We all know that premature optimization is the root of all evil because it leads to unreadable/unmaintainable code. Even worse is pessimization, when someone implements an "optimization" because they …
59
votes
32answers
4k views
When is assembler faster than C?
One of the stated reasons for knowing assembler is that, on occasion, it can be employed to write code that will be more performant than writing that code in a higher-level language, C in particular. …
50
votes
7answers
3k views
When and why are database joins expensive?
I'm doing some research into databases and I'm looking at some limitations of relational DBs.
I'm getting that joins of large tables is very expensive, but I'm not completely sure why. What does the …
45
votes
18answers
4k views
How can Google be so fast?
What are the technologies and programming decisions that make Google able to serve a query so fast?
Every time I search something (one of the several times per day) it always amazes me how they …
40
votes
18answers
7k views
C++ Which is faster: Stack allocation or Heap allocation
This question may sound fairly noobish, but this is a debate I had with another coder I work with.
I was taking care to stack allocate things where I could, instead of heap allocating them. He was …
39
votes
10answers
2k views
Do try/catch blocks hurt performance when exceptions are not thrown?
During a code review with a Microsoft employee we came across a large section of code inside a try{} block. She and an IT representative suggested this can have effects on performance of the code. In …
37
votes
36answers
5k views
Fastest way to get value of pi
Solutions welcome in any language. :-) I'm looking for the fastest way to obtain the value of pi, as a personal challenge. More specifically I'm using ways that don't involve using #defined constants …
33
votes
17answers
3k views
Should try…catch go inside or outside a loop?
I have a loop that looks something like this:
for(int i = 0; i < max; i++) {
String myString = ...;
float myNum = Float.parseFloat(myString);
myFloats[i] = myNum;
}
This is the main …
31
votes
38answers
4k views
Should one use < or <= in a for loop
If you had to iterate through a loop 7 times, would you use:
for (int i = 0; i < 7; i++)
or:
for (int i = 0; i <= 6; i++)
There are two considerations:
performance
readability
For …
31
votes
10answers
2k views
How slow are .NET exceptions?
I don't want a discussion about when to and not to throw exceptions. I wish to resolve a simple issue. 99% of the time the argument for not throwing exceptions revolves around them being slow while …
30
votes
9answers
6k views
String vs string in C#
In C# the string keyword (highlighted in Visual Studio as a data type) is just a shortcut to the String class right?
In that case, it would be the same to use either while coding from the semantic …
30
votes
26answers
5k views
C++ performance vs. Java/C#
My understanding is that C/C++ produces native code to run on a particular machine architecture. Conversely, languages like Java and C# run atop a virtual machine which abstracts away the native …

