Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

32
votes
19answers
2k views

Can knowing C actually hurt the code you write in higher level languages?

The question seems settled, beaten to death even. Smart people have said smart things on the subject. To be a really good programmer, you need to know C. Or do you? I was enlightened twice this ...
18
votes
19answers
2k 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 Stack Overflow ...
14
votes
7answers
624 views

Is count(*) really expensive?

I have a page where I have 4 tabs displaying 4 different reports based off different tables. I obtain the row count of each table using a select count(*) from <table> query and display number ...
11
votes
13answers
1k 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; constant > i; ...
10
votes
5answers
4k views

What “if” is faster - classic or shorthand? [closed]

There are two types of "if" statement in java - classic (if {} else {}) and shorthand (exp ? value1 : value2). Is one faster than another or are they the same? Classic: int x; if (epression) { x ...
10
votes
6answers
5k 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 is myMap.keySet() ...
8
votes
1answer
193 views

Do table slices take up memory in R?

If I take a slice of a table using, say the column names, does R allocate memory to hold the slice in a new location? Specifically, I have a table with columns depth1 and depth2, among others. I want ...
7
votes
5answers
523 views

Premature optimization or am I crazy?

I recently saw a piece of code at comp.lang.c++ moderated returning a reference of a static integer from a function. The code was something like this int& f() { static int x; x++; return ...
7
votes
9answers
912 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 (int i = 0; i < ...
6
votes
2answers
496 views

ColdFusion: More efficient structKeyExists() instead of isDefined()

Which of these is more efficient in ColdFusion? isDefined('url.myvar') or structKeyExists(url, 'myvar')
6
votes
9answers
633 views

Are Java static calls more or less expensive than non-static calls?

Is there any performance benefit one way or another? Is it compiler/VM specific? I am using Hotspot.
6
votes
3answers
242 views

Java Filters Performance Question

I have two questions. The first is do Filters add a lot of overhead to request. We have a filter and it is set to run on the URL pattern /*. This means it also runs on all the image request. I ...
5
votes
11answers
454 views

When is optimization premature?

I see this term used a lot but I feel like most people use it out of laziness or ignorance. For instance, I was reading this article: http://blogs.msdn.com/b/ricom/archive/2006/09/07/745085.aspx ...
5
votes
7answers
513 views

Is ++i really faster than i++ in for-loops in java?

In java I usually make a for-loop like following: for (int i = 0; i < max; i++) { something } But recently a colleague typed it so: for (int i = 0; i < max; ++i) { something } He ...
5
votes
8answers
605 views

Why do Java and C# have bitshifts operators?

Is the difference between integer multiply(temporarily forgetting about division) still in favor of shifting and if so how big is the difference? It simply seems such a low level optimization, even ...
5
votes
12answers
371 views

Calling a getter multiple times or calling once and assigning to a variable?

say suppose I have class as : public class Age { private int age; public int getAge() { return this.age; } } In my Main class I am calling the getAge() method many times. So ...
5
votes
2answers
252 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 optimization vs systematically ...
4
votes
6answers
118 views

Optimization of importing modules in Python

I am reading David Beazley's Python Reference book and he makes a point: For example, if you were performing a lot of square root operations, it is faster to use 'from math import sqrt' and ...
4
votes
5answers
99 views

Is optimizing a class for a unit test good practice, or is it premature?

I've seen (and searched for) a lot of questions on StackOverflow about premature optimization - word on the street is, it is the root of all evil. :P I confess that I'm often guilty of this; I don't ...
4
votes
3answers
122 views

When is it a good idea to intern strings manually in a .Net code?

The reference is here: http://msdn.microsoft.com/en-us/library/system.string.intern.aspx Looks like this is done automatically by the compiler a lot, but can also be done manually. Please correct me ...
4
votes
4answers
270 views

Python - optimize by not importing at module level?

In a framework such as Django, I'd imagine that if a user lands on a page (running a view function called "some_page"), and you have 8 imports at the top of module that are irrelevant to that view, ...
4
votes
3answers
278 views

Java bytecode compiler benchmarks

Q.1. What free compiler produces the most optimal Java bytecode? Q.2. What free virtual machine executes Java bytecode the fastest (on 64-bit multi-core CPUs)? Q.3. What other (currently active) ...
4
votes
5answers
334 views

Which is better Java programming practice for looping up to an int value: a converted for-each loop or a traditional for loop?

Given the need to loop up to an arbitrary int value, is it better programming practice to convert the value into an array and for-each the array, or just use a traditional for loop? FYI, I am ...
4
votes
8answers
341 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 around the Hoare ...
4
votes
4answers
259 views

Creating Local variables in .Net

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 ASP.Net. say MyObject ...
3
votes
5answers
426 views

Shear a numpy array

I'd like to 'shear' a numpy array. I'm not sure I'm using the term 'shear' correctly; by shear, I mean something like: Shift the first column by 0 places Shift the second column by 1 place Shift the ...
3
votes
5answers
415 views

Why would this Lua optimization hack help?

i'm looking over a document that describes various techniques to improve performance of Lua script code, and i'm shocked that such tricks would be required. (Although i'm quoting Lua, i've seen ...
3
votes
11answers
614 views

How to write more efficient code

Question of the century? I basically want to know which would be more efficient if I wrote this code as several different variables or if I used small arrays. int x = 34; int y = 28; int z = 293; ...
3
votes
6answers
164 views

How to test what method implementation runs faster

While the question check if input is type of string has been closed two of the answers spiked a micro-optimization question in my mind: which of the below two solutions would perform better? Reed ...
2
votes
6answers
959 views

Java: Performance of Enums vs. if-then-else

I've had no real luck getting a concise answer for this comparison by using Google and rather than do my own time consuming evaluations, I thought I would ask first. I'm fairly sure that a switch ...
2
votes
2answers
221 views

Am I understanding premature optimization correctly?

I've been struggling with an application I'm writing and I think I'm beginning to see that my problem is premature optimization. The perfectionist side of me wants to make everything optimal and ...
2
votes
4answers
340 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 not having to copy the ...
2
votes
4answers
367 views

Which piece of code is more performant?

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 :- static MD5CryptoServiceProvider ...
1
vote
4answers
566 views

Computation overhead in C# - Using getters/setters vs. modifying arrays directly and casting speeds

I was going to write a long-winded post, but I'll boil it down here: I'm trying to emulate the graphical old-school style of the NES via XNA. However, my FPS is SLOW, trying to modify 65K pixels per ...
1
vote
5answers
1k 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 have to get before it ...
0
votes
4answers
61 views

IF Statements: What's more efficient? Many small ones, or a couple large ones?

I have form for my recipe app that inserts ingredients into a db. If nothing has been submitted yet, nutritional values display '0'. Otherwise they update to the post values. My structure for the ...
0
votes
3answers
84 views

What is a good size for medium sized memory allocations?

For a serializing system, I need to allocate buffers to write data into. The size needed is not known in advance, so the basic pattern is to malloc N bytes and use realloc if more is needed. The size ...
0
votes
8answers
169 views

which bit-manipulation method is more efficient in C?

Base on the answers i've got, i think this problem is kind of meaningless. Thanks for all your kind replies! i want to get a binary number with its rightmost j bits set to 1 and others set to be 0. ...
0
votes
3answers
71 views

Calling a method on an object a bunch of times versus constructing an object a bunch of times

I have a List called myData and I want to apply a particular method (someFunction) to every element in the List. Is calling a method through an object's constructor slower than calling the same method ...
0
votes
2answers
125 views

Should i use HttpResponse.End() for a fast webapp?

HttpResponse.End() seems to throw an exception according to msdn. Right now i have the choice of returning a value to say end thread (it only goes 2 functions deep) or i can call end(). I know that ...
0
votes
4answers
138 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 added per login? 2) Is ...
-1
votes
2answers
191 views

Python | efficiency and performance

Lets say I'm going to save 100 floating point numbers in a list by running a single script, most probably it will take some memory to process.So if this code executes every time as a requirement of an ...
-2
votes
2answers
226 views

Remove the delimiter , at the end

String prefix = ""; for (String serverId : serverIds) { sb.append(prefix); prefix = ","; sb.append(serverId); } The following code runs faster than the above code . the "," prefix object does ...