For questions pertaining to the measurement or improvement of code efficiency.
2
votes
1answer
26 views
How can I make this code faster?? List<custom_class>().Find(lambda_expression)
I need to match email sends with email bounces so I can find if they were delivered or not. The catch is, I have to limit the bounce to within 4 days of the send to eliminate matching the wrong send ...
0
votes
1answer
10 views
Sum Filtered Value
I have these rows:
value1 | value2 | value3
-------------------------
1231234|23423423|B
2342345|12309123|X
3242344|53453453|X
3453454|45345344|I
2531534|53434534|X
6657555|42342234|I
...
-6
votes
1answer
57 views
Faster Code Anyone? :)
EDIT: shaved roughly 10% processing time with:
register int16_t *libwordPointer = libword;
int16_t *nReset;
register int16_t *wordsPointer = words[word];
int16_t *mReset = wordsPointer;
for( int ...
1
vote
4answers
41 views
Speeding up double absolute value in C++
I'm profiling my code and optimized everything I could, coming down to a function which looks something like this:
double func(double a, double b, double c, double d, int i){
if(i > 10 ...
-2
votes
1answer
6 views
Postfix time in queue manager very high
http://screencast.com/t/7Ok2PwDDj
I have been running Postfix 2.6.6 for the last 5 months. There has not been any server changes and the config allowed me to send 150,000 emails per hour with no ...
0
votes
0answers
4 views
How to reduce XNA game CPU usage while nothing worth computing is happening?
A fresh XNA game project application consumes quite some CPU percentage while its window is active. On my desktop PC it's about 30% of one core of a 2-core processor. When the window loses focus, the ...
9
votes
2answers
94 views
Monitor non-heap memory usage of a JVM
We usually deal with OutOfMemoryError problems because of heap or permgen size configuration problem.
But all the JVM memory is not permgen or heap.
As far as I understand, it can also be related to ...
0
votes
0answers
40 views
What is the optimum size for a minified JavaScript file? [closed]
Assuming an entire JavaScript code-base is minified into a single file, at what file size would it be more efficient to breakout the single minified file into two so that the files can be downloaded ...
0
votes
0answers
6 views
Windows Forms/SQL Database/Datagridview: Rapid search through large quantity of data
I have a MySQLCe database of double integers 0.00 to 1000.00 in intervals of .01 (so 100,000 rows). I'm using the Sterling Activex API. It's kind of obscure and difficult to explain, but basically all ...
7
votes
5answers
660 views
What is the standard OCaml data structure with fastest iteration?
I'm looking for a container that provides fastest unordered iterations through the encapsulated elements. In other words, "add once, iterate many times".
Is there one among OCaml's standard modules ...
3
votes
6answers
824 views
Performance of the c code
I'm using gcc for my c programmes. How can I check which method is faster (suppose that I write a code to swap two numbers and I rewrote the same code using bit operator), is there any tool in linux ...
-2
votes
2answers
59 views
inverse square root python [closed]
Does any python library offer a function that implements the "fast inverse square root" algorithm described in following link?
http://en.wikipedia.org/wiki/Fast_inverse_square_root
Perhaps ...
1
vote
2answers
22 views
Android Share Preferences vs Intent extra in order to share data
In my Android Application I have to pass data (Variables regarding the state of the application) from an Activiy to another one. And I have to do this many times in others Activities. What's the best ...
1
vote
1answer
23 views
In golang, why does my program run slower when I use a buffered (asynchronous) channel?
I'm fairly new to golang, so I'm sure that this question is largely due to some conceptual shortcomings on my part.
In golang, we can have two types of channels: unbuffered and buffered (synchronous ...
1
vote
2answers
53 views
+50
How to turn queries to perform efficiently in rails?
Consider i have a 15 categories and 6 sub-categories and i have table items where i have set of records where i have to fetch in the following manner
category 1 ---> level 1 ---> 3 items with ...
2
votes
1answer
37 views
Performance breakdown for Rails app
I have a Rails model that has dozens of methods calling each other as follow:
class MyModel
def function1
end
...
def functionN
end
def summary
function1
...
functionN
end
end
I ...
0
votes
1answer
22 views
How do x86 jump instructions check their respective flags?
As I understand, conditional jumps check the status of a flag set after the CMP instruction. For example:
CMP AX,DX ; Set compare flags
JGE DONE ; Go to DONE label if AX >= DX
...
...
439
votes
3answers
35k views
\d is less efficient than [0-9]
I made a comment yesterday on an answer where someone had used [0123456789] in a regular expression rather than [0-9] or \d. I said it was probably more efficient to use a range or digit specifier ...
0
votes
1answer
20 views
Re-drawing the canvas or moving it?
I need to draw a line that moves from left to right over the screen. Currently I'm just calling .clearRect() everytime, and draw it again, 1 pixel further. However, another possibility would be to ...
69
votes
1answer
2k views
Why does my application spend 24% of its life doing a null check?
The code for the binary tree iterator is below with the results from running performance analysis against it.
public ScTreeNode GetNodeForState(int rootIndex, float[] inputs)
{
0.2% ...
0
votes
0answers
21 views
Javascript object group by day,month,year
I am working on application which I need to do grouping of different sets of javascript object and those will be based on month,day and year.
For day I am doing like below
var calculateByDay = ...
-1
votes
1answer
23 views
Returning personalized data
I'm building an app that gives the user personalized news based on their interest. The articles contain entities(e.g, Obama, Romney, USA) and a category (eg., Politics) and the user can vote up/down ...
1
vote
0answers
31 views
Compare-Object Powershell performance and Operation VS Loop
I was looking at this question where the OP wanted to know how to compare items in two arrays without looping through each array.
The command given was:
$array3 = @(Compare-Object $array1 $array2 | ...
0
votes
1answer
18 views
How to find related pages without querying inside a loop?
I'm having an issue with a site I'm programming. Things are a bit slow on a site section where I have pages and child pages.
I've got a lot of mySQL queries specifically at this section, there are ...
1
vote
4answers
512 views
Should I use typeof in Javascript type equality?
What is better?
if (obj === undefined) { }
vs.
if (typeof(obj) === 'undefined') { }
4
votes
5answers
151 views
PHP: Fastest way to handle undefined array key
in a very tight loop I need to access tenthousands of values in an array containing millions of elements. The key can be undefinied: In that case it shall be legal to return NULL without any error ...
0
votes
3answers
28 views
Why is ActiveRecord destroy_all taking so long?
I have a simple rails app with articles and comments running on MySQL 5.5, Ruby 1.9.3 and rails 3.2.12:
class Article < ActiveRecord::Base ...
0
votes
0answers
31 views
Does using interface in android app hurts app performance
In one presentation deck of Reto Meier I read, his suggestion to prefer virtual methods over interface but there were no more explanation. Apart from the runtime overhead is there anything else which ...
9
votes
3answers
1k views
Can you use Mono/LLVM to generate faster .NET apps than with Microsoft's C# compiler?
The Mono with LLVM project is able to use the LLVM compiler back-end which has some pretty powerful optimizations to compile a C# .NET project, which get it running about 20% faster in computationally ...
0
votes
5answers
62 views
Does using Else statements inside a loop incur a performance hit?
I'm writing a Monte Carlo simulation in c# and I'm trying to make sure that I write code which is as efficient as possible---I'm running billions of loops and things are getting slow. I have a ...
1
vote
4answers
392 views
Dependency injection in javascript
I have been playing around with dependency injection with javscript but have some questions that I need help with
A simple example is a dialog module I have, used in multiple places on the page it ...
11
votes
10answers
24k views
'for' loop vs Qt's 'foreach' in C++
Which is better (or faster), a C++ for loop or the foreach operator provided by Qt? For example, the following condition
QList<QString> listofstrings;
Which is better?
foreach(QString str, ...
18
votes
3answers
441 views
+50
Run executable from php without spawning a shell
I need to call an executable from an imposed context of a PHP script. Both performance and security wise it's better not to call a shell at all between web server process and executable.
Of course I ...
1
vote
1answer
40 views
Best way to concatenate strings in javascript?
In JavaScript, I have a loop that has many iterations, and in each iteration, I am creating a huge string with many += operators. Is there a more efficient way to create a string? I was thinking about ...
4
votes
5answers
115 views
Function pointer runs faster than inline function. Why?
I ran a benchmark of mine on my computer (Intel i3-3220 @ 3.3GHz, Fedora 18), and got very unexpected results. A function pointer was actually a bit faster than an inline function.
Code:
#include ...
0
votes
0answers
14 views
CPU intensive and slow XML parsing in Java 7 due to Xalan issue in SAX2DOM
We upgraded from Java 6 to Java 7 and suddenly see a significant performance issue in our application related to XML parsing. Almost all the time when I do the tread dump, I can see the following near ...
-1
votes
5answers
125 views
Make python code run faster [closed]
I have the following code:
for stepi in range(0, nsteps): #number of steps (each step contains a number of frames)
stepName = odb.steps.values()[stepi].name #step name
for framei in range(0, ...
1
vote
2answers
62 views
Check string for a given alphabet
I need to check if a string (word, no whitespaces) has any letters of a given alphabet.
String A: apple
String B: bed
Alphabet: a b c d e f
I want to compare efficiently the string with the ...
0
votes
2answers
17 views
Tortoise SVN update slow on the solution node but not on projects nodes
I am having a little problem with tortoise SVN: in Visual Studio 2010, when updating my solution to the latest version (right click on the top solution node), it takes 2 minutes. However, if I select ...
0
votes
2answers
35 views
Populating a MySQL database from a DB2 database
I currently have a script for populating a MySQL database from a DB2 server. It works, but it seems to be inserting the rows into MySQL at an extremely slow rate. The server process is executing at ...
1
vote
0answers
34 views
High Performance WPF Datagrid
My issue in a nutshell : we are currently using in our project the standard WPF dataGrid, which comes with WPF .NET4 and above. Unfortunately for us, the performances are horrible for the scale of ...
1
vote
0answers
33 views
C# load xlsx file performance bad
I have a question regarding Excel (Xlsx) files loading in C#. I have implemented Excel loading with NPOI 2.0 but the performance was quite bad (15 to 25 seconds loading time with 10000 rows and 60 ...
0
votes
2answers
215 views
How much will a timer event slow down my code in JavaScript
I am currently building a rather large web based application. My job is to build the interface using JavaScript and jQuery. Eventually the application will be using Ajax, C# and SQL. There is thus ...
3
votes
3answers
2k views
Ruby on Rails performance on ARM
I was wondering if we could replace our Atom N270 based nettops that are running a Rails (ruby 1.8.6...) webapp with some equivalent ARM based device (we like the fanless setup, power consumption, ...
0
votes
1answer
20 views
efficiently loading jquery and javascript files in django templates
In one of my django projects i am using lots of custom jquery scripts and lots of open source jquery plugins. Now if i load all the jquery scripts in my base template, I will be loading a lot of ...
1
vote
3answers
42 views
finding nested table cell contents - jquery query performance
I have a huge table with generated html in each td. The generated html is ultimately just another table inside a container div of class .cellcontent. The current jquery for getting the contents of the ...
-1
votes
3answers
63 views
Is this more efficient than Sieve of Eratosthenes? [closed]
I wrote a code in Python 2.7 for creating list of prime numbers. The code is
def primes_list(num):
ans = [2]
for i in range(3, num, 2):
for j in ans:
if i % j == 0:
...
0
votes
0answers
33 views
Does Rapidly Calling A Method With Local Variables Eat CPU/Memory?
Say I have a method that defines a few objects and variable and initializes them. Would a timer or similar that loops through the method every half second or so eat up memory with the objects and ...
0
votes
1answer
31 views
My Custom ListView is too laggy
I'm making a file manager. It's UI is similar to Root Explorer's UI.
But I added Root Access to my file manager, then my custom listview is very laggy.
I searched a lot, but I couldn't fix it yet.
...
0
votes
1answer
13 views
detect the need of ActiveRecord eager load
Is there any tool/automation which will identify the need of ActiveRecord eager load and warn the same.
Can any fix to ActiveRecord fix it?



