Tagged Questions

15
votes
19answers
1k views

When is optimisation premature?

As Knuth said, We should forget about small efficiencies, say about 97% of the time: premature optimization is the root of all evil. This is something which often comes up in …
4
votes
8answers
231 views

Is it premature optimization to develop on slow machines?

We should develop on slow boxen because it forces us to optimize early. Randall Hyde points out in The Fallacy of Premature Optimization, there are plenty of misconceptions ar …
1
vote
5answers
347 views

At which n does binary search become faster than linear search on a modern CPU?

Due to the wonders of branch prediction, a binary search can be slower than a linear search through an array of integers. On a typical desktop processor, how big does that array ha …
10
votes
13answers
852 views

Does rearranging a conditional evaluation speed up a loop?

Bit of a weird one: I was told a while ago by a friend that rearranging this example for loop from : for(int i = 0; i < constant; ++i) { // code... } to: for(int i = 0; …
5
votes
2answers
116 views

Any good literature on join performance vs systematic denormalization ?

As a corollary to this question I was wondering if there was good comparative studies I could consult and pass along about the advantages of using the RDMBS do the join optimizatio …
7
votes
9answers
345 views

What is the Cost of Calling array.length

While updating for loops to for-each loops in our application, I came across a lot of these "patterns": for (int i = 0, n = a.length; i < n; i++) { ... } instead of for …
0
votes
4answers
114 views

In terms of today’s technology, are these meaningful concerns about data size?

We're adding extra login information to an existing database record on the order of 3.85KB per login. There are two concerns about this: 1) Is this too much on-the-wire data adde …
5
votes
5answers
572 views

Java foreach efficiency

I have something like this: Map<String, String> myMap = ...; for(String key : myMap.keySet()) { System.out.println(key); System.out.println(myMap.get(key)); } So i …
2
votes
4answers
175 views

passing a string by reference to a function would speed things up? (php) [closed]

Possible Duplicate: In PHP (>= 5.0), is passing by reference faster? I wonder if by declaring the parameter pass by reference, the PHP interpreter will be faster for no …
1
vote
4answers
181 views

Which piece of code is more performant?

Hi folks, I have some code i'm revewing, which is used to convert some text into an MD5 Hash. Works great. It's used to create an MD5Hhash for a gravatar avatar. Here it is :- st …
3
votes
4answers
205 views

Creating Local variables in .Net

Hey all, I just want to know that creating local variables to accept the return value of function is going to hit memory usage or performance in .Net applications , especially in …