3
votes
11answers
135 views
Are there applications that can crunch numbers without an OS
Applications that would boot straight from boot media without needing to be run from an OS. Something like memtest86 but for crunching numbers.
If there are not, why not?
WOuld this lead to better …
1
vote
2answers
11 views
Performance concerns on sanitizing all user input using PHP array_map
Hi,
I'm running this function to sanitize all user input through out my site, but it worries me that it may be very performance intensive...
// function for cleaning arrays, recursively for arrays …
2
votes
8answers
179 views
Which is optimal ?
Is declaring a variable inside a loop is good or declaring on the fly optimal in Java.Also is there any performance cost involved while declaring inside the loop?
eg.
Option 1: Outside the Loop
…
4
votes
2answers
160 views
+150
Why is scaling down a UIImage from the camera so slow?
resizing a camera UIImage returned by the UIImagePickerController takes a ridiculously long time if you do it the usual way as in this post.
Yes, it's a lot of pixels, but the graphics hardware on …
6
votes
3answers
192 views
what is the use of Long.reverse(long ) method?
I found one method in Long class
public static long reverse(long i) {..}
What is the use of this method?
30
votes
14answers
2k 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 …
0
votes
3answers
1k views
.NET 2.0 DataGridView ComboBox column - slow to display items
Hi,
Any suggestions on how to improve DataGridViewComboBoxColumn performace with large item sets?
I've got a DataGridView with several columns of type DataGridViewComboBoxColumn. I'm databinding …
4
votes
13answers
454 views
What is the name of this anti-pattern?
Surely some of you have dealt with this one. It tends to happen when programmers get a bit too taken by OO and forget about performance and having a database.
For an example, lets say we have an …
3
votes
12answers
296 views
How much slower is a try/catch block? [closed]
Possible Duplicate:
What is the real overhead of try/catch in C#?
how much slower is a try catch block than a conditional?
eg
try
{
v = someArray[10];
}
…
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 …
0
votes
0answers
6 views
SSIS Lookup Component Performance Sorting Lookup Query
I'm attempting to use the SSIS 2008 lookup component in full cached mode with a T-SQL Query.
Is there any benefit to using a ORDER BY clause in the T-sql.
Here is a example:
SELECT
FooFK
,FooValue
…
6
votes
8answers
212 views
Does Functional programming allow better runtime compiler optimizations?
NOTE: Already made this a Wiki. I don't care what this question is tagged as, as long as there is a good discussion.
I've heard that since in pure functional programs, there are no side effects and …
1
vote
0answers
16 views
Performance Impact of loading WPF resource files
In my application I am loading all my shared resources into the app.xaml. The problem is that the vs2008 designer can't see styles in a different assembly so I lose designer support unless I use …
11
votes
9answers
661 views
How do you performance test JavaScript code?
CPU Cycles, Memory Usage, Execution Time, etc.?
Added: Is there a quantitative way of testing performance in JavaScript besides just perception of how fast the code runs?
3
votes
4answers
64 views
MySQL count rows performance
For an InnoDB storage is it better to count the total number of records with
`select * from tbl where pk = 1`
<em>retrieve mysql_num_rows</em>
or with
`select count(*) as …
