The performance of applications is often a paramount concern for mission critical systems.
414
votes
7answers
92k views
Why is one loop so much slower than two loops?
Suppose a1, b1, c1, and d1 point to heap memory and my numerical code has the following core loop.
const int n=100000
for(int j=0;j<n;j++){
a1[j] += b1[j];
c1[j] += d1[j];
}
This loop ...
296
votes
26answers
114k views
slow android emulator
I have a 2.67GHz Celeron Processor, 1.21GBs of RAM on a x86 Windows XP Pro machine. My understanding is that the emulator should start fairly quickly on such a machine, but for me it does not. I have ...
257
votes
14answers
51k 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 ...
171
votes
31answers
16k views
Performance optimization strategies of last resort?
There are plenty of performance questions on this site already, but it occurs to me that almost all are very problem-specific and fairly narrow. And almost all repeat the advice to avoid premature ...
166
votes
14answers
10k 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 ...
147
votes
15answers
7k views
What statistics should a programmer (or computer scientist) know?
I'm a programmer with a decent background in math and computer science. I've studied computability, graph theory, linear algebra, abstract algebra, algorithms, and a little probability and statistics ...
139
votes
23answers
85k views
Tricks to speed up Eclipse [closed]
Which tricks do you know to make the experience with Eclipse faster?
For instance: I disable the all the plugins I don't need (Mylyn, Subclipse, …).
Instead of using a plugin for Mercurial ...
137
votes
23answers
8k views
Tactics for using PHP in a high-load site
Before you answer this I have never developed anything popular enough to attain high server loads. Treat me as (sigh) an alien that has just landed on the planet, albeit one that knows PHP and a few ...
126
votes
21answers
3k views
Is Disney's FastPass Valid and/or Useful Queue Theory
At Disney World, they use a system called Fastpass to create a second, shorter line for popular rides. The idea is that you can wait in the standard line, often with a wait longer than an hour, or ...
121
votes
22answers
40k views
Big O, how do you calculate/approximate it?
Most people with a degree in CS will certainly know what Big O stands for.
It helps us to measure how (in)efficient an algorithm really is and if you know in what category the problem you are trying ...
119
votes
22answers
25k views
C++ Which is faster: Stack allocation or Heap allocation
This question may sound fairly elementary, but this is a debate I had with another developer I work with.
I was taking care to stack allocate things where I could, instead of heap allocating them. He ...
119
votes
31answers
39k 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 on top of a virtual machine which abstracts away the native ...
117
votes
18answers
2k views
Cached, PHP generated Thumbnails load slow: How to find problem/solution from Waterfall graphs?
Question Part A ▉ (100 bountys, awarded)
Main question was how to make this site, load faster. First we needed to read these waterfalls. Thanks all for your suggestions on the waterfall readout ...
114
votes
34answers
8k 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. ...
110
votes
7answers
2k views
Why does appending “” to a String save memory?
I used a variable with a lot of data in it, say String data.
I wanted to use a small part of this string in the following way:
this.smallpart = data.substring(12,18);
After some hours of debugging ...
110
votes
15answers
33k views
MyISAM versus InnoDB
I'm working on a projects which involves a lot of database writes, I'd say (70% inserts and 30% reads). This ratio would also include updates which I consider to be one read and one write. The reads ...
106
votes
9answers
7k views
Speed comparison with Project Euler: C vs Python vs Erlang vs Haskell
I have taken Problem #12 from Project Euler as a programming exercise and to compare my (surely not optimal) implementations in C, Python, Erlang and Haskell. In order to get some higher execution ...
106
votes
7answers
8k 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 ...
105
votes
42answers
9k views
What is the most ridiculous pessimization you've seen? [closed]
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 ...
102
votes
11answers
3k views
Isn't it silly that a tiny favicon requires yet another HTTP request? How to make favicon go into a sprite?
Everybody knows how to setup a favicon.ico link in HTML:
<link rel="shortcut icon" href="http://hi.org/icon.ico" type="image/x-icon" />
But I think it is just silly that for a tiny ...
102
votes
10answers
8k views
Efficiency of Java “Double Brace Initialization”?
In Hidden Features of Java the top answer mentions Double Brace Initialization, with a very enticing syntax:
Set<String> flavors = new HashSet<String>() {{
add("vanilla");
...
101
votes
6answers
11k views
Efficiency of purely functional programming
Does anyone know what is the worst possible asymptotic slowdown that can happen when programming purely functionally as opposed to imperatively (i.e. allowing side-effects)?
Clarification from ...
99
votes
9answers
7k views
Performance surprise with “as” and nullable types
I'm just revising chapter 4 of C# in Depth which deals with nullable types, and I'm adding a section about using the "as" operator, which allows you to write:
object o = ...;
int? x = o as int?;
if ...
93
votes
4answers
12k views
How do I improve the performance of SQLite?
Optimizing SQLite is tricky. Bulk-insert performance of a C application can vary from 85 inserts-per-second to over 96 000 inserts-per-second!
Background: We are using SQLite as part of a desktop ...
93
votes
11answers
8k views
Why does C++ compilation take so long?
Compiling a C++ file takes a very long time when compared to C#, Java. It takes significantly longer to compile a C++ file than it would to run a normal size Python script. I'm current using VC++ but ...
92
votes
14answers
38k views
HTTP vs HTTPS performance
Are there any major differences in performance between http and https? I seem to recall reading that https can be up to 1/5 times slower than http. Is this valid with the current generation ...
90
votes
11answers
7k views
How do I get Windows to go as fast as Linux for compiling C++?
I know this is not so much a programming question but it is relevant.
I work on a fairly large cross platform project. On Windows I use VC++ 2008. On Linux I use gcc. There are around 40k files in ...
90
votes
6answers
31k views
When should I use Cross Apply over Inner Join?
What is the main purpose of using CROSS APPLY?
I have read (vaguely, through posts on the Internet) that cross apply can be more efficient when selecting over large data sets if you are partitioning. ...
89
votes
11answers
4k views
Is 'switch' faster than 'if'?
Is a switch statement actually faster than an if statement?
I ran the code below on Visual Studio 2010's x64 C++ compiler with the /Ox flag:
#include <stdlib.h>
#include <stdio.h>
...
89
votes
15answers
4k views
Why aren't we programming on the GPU?
So I finally took the time to learn CUDA and get it installed and configured on my computer and I have to say, I'm quite impressed!
Here's how it does rendering the Mandelbrot set at 1280 x 678 ...
89
votes
19answers
8k 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 ...
87
votes
23answers
11k 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 ...
86
votes
14answers
21k views
Microsoft CDN for jQuery or Google CDN?
Does it actually matter which CDN you use to link to your jquery file or any javascript file for that matter. Is one potentially faster than the other? What other factors could play a role in which ...
80
votes
20answers
6k views
Why did java have the reputation of being slow? [closed]
Ok, this is not trolling. It's a real, technical question.
Java has the reputation of being slow. There are jokes about it. I am not a great java user, the only occasional use I have is for applets, ...
78
votes
12answers
4k views
Is LINQ banned in your company? [closed]
I work for a large company who develop enterprise applications which are performance oriented. Virtually every line of code is closely scrutinised and optimized as much as possible to ensure the best ...
77
votes
15answers
13k views
Is there a performance difference between i++ and ++i in C?
Is there a performance difference between i++ and ++i if the resulting value is not used?
75
votes
10answers
5k 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 ...
75
votes
40answers
9k 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 ...
75
votes
15answers
17k views
Subqueries vs joins
I refactored a slow section of an application we inherited from another company to use an inner join instead of a subquery like
where id in (select id from ... )
The refactored query runs about ...
74
votes
14answers
5k views
Anatomy of a “Memory Leak”
In .NET perspective:
What is a Memory Leak?
How to understand whether your application leaks? What are the effects?
How to prevent a memory leak?
If your application has memory leak, does it go away ...
71
votes
8answers
10k views
How to optimize for-comprehensions and loops in Scala?
So Scala is supposed to be as fast as Java. I'm revisiting in Scala some Project Euler problems that I originally tackled in Java. Specifically Problem 5 : "What is the smallest positive number that ...
71
votes
17answers
59k views
Why is using Javascript eval function a bad idea?
The eval function is a powerful and easy way to dynamically generate code so what are the caveats?
70
votes
1answer
8k views
How does _gaq.push(['_trackPageLoadTime']) work?
How does the Google Analytics Site Speed feature, _gaq.push(['_trackPageLoadTime']), work? Is there any documentation about how it works?
69
votes
14answers
5k views
How does Facebook achieve good performance?
Almost everyone has a Facebook account, even people who are not familiar with the Internet.
With millions people actively using Facebook, updating their status, replying to messages, uploading photos ...
69
votes
13answers
7k views
Is there a performance difference between i++ and ++i in C++?
We looked at this answer for C in this question:
http://stackoverflow.com/questions/24886/is-there-a-performance-difference-between-i-and-i-in-c
What's the answer for C++?
67
votes
9answers
4k views
When to use Vanilla JavaScript vs. jQuery?
I have noticed while monitoring/attempting to answer common jQuery questions, that there are certain practices using javascript, instead of jQuery, that actually enable you to write less and do ... ...
67
votes
13answers
22k views
Preferred method to store PHP arrays (json_encode vs serialize)
I need to store a multi-dimensional associative array of data in a flat file for caching purposes. I might occasionally come across the need to convert it to JSON for use in my web app but the vast ...
67
votes
16answers
7k views
How slow are Java exceptions?
Question: Is exception handling in Java actually slow?
Conventional wisdom, as well as a lot of Google results, says that exceptional logic shouldn't be used for normal program flow in Java. Two ...
65
votes
16answers
39k views
ASP.net vs PHP - performance, future-proofing & ease of development [closed]
I was asked yesterday by a client whether it was better for him to run his high-availability / throughput shopping site on ASP.net or PHP. He's ready to make a "Ten Year Decision," so he needs to know ...
63
votes
14answers
14k views
Inner join vs Where
Is there a difference in performance (in oracle) between
Select * from Table1 T1
Inner Join Table2 T2 On T1.ID = T2.ID
And
Select * from Table1 T1, Table2 T2
Where T1.ID = T2.ID
?