For questions pertaining to the measurement or improvement of code efficiency.
10
votes
0answers
76 views
R: Why is the [[ ]] approach for subsetting a list faster than using $?
I've been working on a few projects that have required me to do a lot of list subsetting and while profiling code I realised that the object[["nameHere"]] approach to subsetting lists was usually ...
-1
votes
0answers
8 views
are limit books typically held in server-side memory or the database? (and where are crosses processed?)
I assume that most financial exchanges are written in high performance languages like c++ with a high performance database like Oracle.
That said, are limit books, like the one for google ...
0
votes
1answer
16 views
JS compression - PageSpeed (Google Chrome report)
I'm running PageSpeed google chrome extension to check performance of my webpage. I believe I have got compressed JS file (See attached code) but report says It can be compressed again to get 59% ...
-1
votes
0answers
87 views
How can I make this program a bit more efficient? [closed]
So I'm trying to solve a SPOJ problem, which code is SAMER08A and this is the link: http://www.spoj.com/problems/SAMER08A/
The problem, is that when I ran my code in my IDE, the code works perfect ...
2
votes
0answers
20 views
How is jProfiler handling JIT?
I use jProfiler extensively and it is a great tool but I am wondering how is jProfiler handling the effects of the JIT compilation.
Am I able to observe for example method inlining? If a method is ...
0
votes
2answers
45 views
Javascript code freezes page for a while — how do I prevent this?
I have a fairly CPU-intensive script which, when run, freezes the whole page for a while, so that it can't be scrolled or clicked, etc. I would gladly sacrifice performance for a more smooth ...
0
votes
1answer
22 views
Do non-unique indexes provide any performance advantage in pandas?
From the pandas documentation, I've gathered that unique-valued indices make certain operations efficient, and that non-unique indices are occasionally tolerated.
From the outside, it doesn't look ...
0
votes
2answers
26 views
PC performance and stability issue in multithreaded simple benchmark. How to make each thread run on separate core?
Look at my code in this post:
How to write simple speed test app with CUDA?
This time I'm not about the CUDA, but the code of application that is in the post. The issue I want to face is that the ...
7
votes
1answer
79 views
Why is Firefox 30 times slower than Chrome, when calculating Perlin noise?
I have written a map generator in javascript, using classical perlin noise scripts I have found in various places, to get the functionality I want. I have been working in chrome, and have not ...
2
votes
2answers
70 views
A really slow UPDATE to a MySQL server
I am running a CMS, but this has nothing do to with it.
I have a simple query which is:
UPDATE e107_online SET `online_location` = 'http://page.com/something.php?', `online_pagecount` = 133 WHERE ...
0
votes
1answer
11 views
Apache Server Slots, Memory, KeepAlive, PHP and SSL - how to speed up
on a Debian web server (VPS) with good CPU, 6 GB RAM, and fast backbone Internet connection, I run a PHP application. PHP runs in "prefork" mode (incl. APC opcache), because whenever you search for ...
1
vote
0answers
22 views
What should be the timeout for window resize dragging?
I have this code that fires when the user has probably stopped resizing the window (by dragging). It uses a 100ms timeout to not fire at every single window resize event. I'd like to find the balance ...
0
votes
2answers
27 views
Getting an object property multiple times in a row vs getting it once and storing in a variable. Will the compiler optimize it anyway?
Is it better to store an object property when you access it multiple times in a row? Below is a rather silly example of getting an object property multiple times in a row and two ways of dealing with ...
2
votes
4answers
54 views
Improving perfomance for randomly created panels
So what I'm trying to do is create like a random image from panels of different colors. The user can choose how many panels (i.e. pixels) he wants to have and the number of different colors and then ...
-3
votes
1answer
29 views
Best performance practice for ID's exclusion in SQL queries [closed]
Which method gain more performance:
1. Query exclusion
$exlusionIds = array(1,2,3,4,5);
$sth = $dbh->prepare("
SELECT article_id, title, description
FROM articles
WHERE active = 1 ...
-1
votes
4answers
68 views
Creating an object of a pre-implemented java class is much faster than creating a custom object? [closed]
class DummyInteger {
private int i;
public DummyInteger(int i) {
this.i = i;
}
public int getI() {
return i;
}
}
long start = System.nanoTime();
DummyInteger n = ...
54
votes
3answers
701 views
\d less efficient than [0-9]
I made a comment yesterday on an answer where someone had used [0123456789] in a regex rather than [0-9] or \d. I said it was probably more efficient to use a range or digit specifier than a character ...
0
votes
0answers
11 views
Extremely slow performance of element.addEventListener(“touchstart”)
On Chrome something is seriously wrong with the performance of element.addEventListener("touchstart") in my system, in some cases reaching 100ms for a single call.
r00122 listen touchstart: 60.000ms
...
0
votes
1answer
27 views
as3 if remove Parent Do all children get removed too?
I am loading a mc called Spiri into a mc called Box. Later I want to remove both from memory usage and off screen. I have the off screen in a tween not shown here.
If I use removeChild(box); will it ...
3
votes
4answers
84 views
Very slow assignment to vector when unnamed (becoming named) in R
my code hit a performance snag that I could reproduce in this snippet
rm (z)
z = c()
system.time({z[as.character(1:10^5)] = T})
user system elapsed
48.716 0.023 48.738
I tried to pre-allocate ...
1
vote
2answers
53 views
Immutable Dictionary Vs Dictionary Vs C5 Vs F# - performance
Our application uses plenty of dictionaries which have multi level lookup that are not frequently changing. We are investigating at converting some of the critical code that does a lot of lookup using ...
0
votes
0answers
29 views
Increased processing time for every loop vector of Matrixes c++
This code gets called for multiple images in a row to create features of an image based on the Histogram of Orientated Gradients and a Correlogram. Problem is that with every image the processing time ...
0
votes
4answers
64 views
Test performance c#
I've created a console application where I try 2 different methods of getting values from a sql database (= on the same server). When I add a stopwatch to check which one is the fastest method, I'll ...
0
votes
1answer
42 views
KineticJS Stage draggable perfomance
Good afternoon. I have a small problem with the optimization KineticJS and stage. When drag the scene on my computer, it runs smoothly. When to try a more low-end machines, it appears slowly and some ...
4
votes
2answers
96 views
WPF program launches super fast on one computer but super slow on another
My wpf program has a strange problem regarding the startup performance on different computer with same specs.
One computer loads my program less than a second.
Another computer with the same spec ...
4
votes
4answers
91 views
What's the performance of the “address of” operator &?
I have to pass a lot of pointers in my code in the midst of a big loop, (so I have lots of expressions like foo(&x, &y, ...)). I was wondering whether I should store the pointers as separate ...
0
votes
0answers
19 views
Plot matrix with GNUplot. Slow
I am using GNUplot for plotting a small matrix.
The matrix is 100x100 by size. e.g.
1.23212 2.43123 -1.24312 ......
-4.23123 2.00458 5.60234 ......
......
The data is not neatly stored in the file.
...
3
votes
1answer
72 views
Why don't GCC and Clang use cvtss2sd [memory]?
I'm trying to optimize some code that's supposed to read single precision floats from memory and perform arithmetic on them in double precision. This is becoming a significant performance bottleneck, ...
8
votes
0answers
155 views
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
0answers
51 views
ResourceDictionary and Serious Performance Issue
I have two simple ResourceDictionary in my application.
Converters.xaml
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:l="clr-namespace:MyApp" ...
18
votes
4answers
359 views
Does typecasting consume extra CPU cycles
Does typecasting in C/C++ result in extra CPU cycles?
My understanding is that is should consume extra CPU cycles atleast in certain cases. Like typecasting from float to integer where the CPU should ...
-1
votes
0answers
41 views
How can I speed up my prolog program
I am using swi jpl a prolog/java interface and recently I am running into performance issues, the knowledge base contains around 3K predicates and 200 rules, sometimes a single query could return ...
1
vote
0answers
37 views
Java service memory usage varying
I created a service which reads every 10 seconds(Thread.sleep) new messages from an online text file(chat). When I look in the settings the memory usage starts at 4.0MB which is ok, but every minute ...
4
votes
8answers
322 views
Sending SMS for a bulk of users
I want to send SMS to bulk of users(4000 user) so i put the following method on loop :
protected int SendSMS(string url)
{
// Now to Send Data.
StreamWriter writer = ...
7
votes
1answer
152 views
Garbage collector tuning in Ruby 2.0
I was wondering if the GC tuning used for ruby 1.9.x is still relevant in 2.0 with the new implementation of the GC. If so, are there any new things that we can configure on the new version?
I am ...
13
votes
4answers
388 views
Fast 2D graphics in WPF
I need to draw a large amount of 2D elements in WPF, such as lines and polygons. Their position also needs to be updated constantly.
I have looked at many of the answers here which mostly suggested ...
0
votes
0answers
25 views
Andengine game with TMX
i am developing game with andengine and tiledmaps,
i have river object in tmx map and i want to die player after falling in river
but how to implement this I have no idea
pls help
Thanks in ...
4
votes
1answer
143 views
crop image without copying
I'm writing an application that requires me to split a large image into small tiles, where each tile is essentially a cropped version of the original image.
Currently my split operation looks ...
125
votes
2answers
3k views
Why is processing a sorted array slower than an unsorted array?
I have a list of 500000 randomly generated Tuple<long,long,string> objects on which I am performing a simple "between" search:
var data = new List<Tuple<long,long,string>>(500000);
...
159
votes
9answers
7k views
Is !important bad for performance?
I hate them, it defies the cascading nature of CSS, and if you don't use them with care you end up in a loop of adding more !important.
But I want to know are they bad for performance?
EDIT
From the ...
0
votes
4answers
643 views
Fetch dates (by month or year) stored in TIMESTAMP using JPA
I am facing a problem and I would like you to help me.
It turns out I have one table in my Oracle 11g database where I store failures of one electronic device. The table definition is following:
...
4
votes
4answers
279 views
Performance issue loading data from CRM
Currently our website is facing a problem with slow response times (more than 1 min) when we query CRM from our website. We are using CRM 2011 though a web service. When we investigated we found that ...
2
votes
8answers
875 views
jQuery appending an array of elements
For the purpose of this question lets say we need to append() 1000 objects to the body element.
You could go about it like this:
for(x = 0; x < 1000; x++) {
var element = ...
0
votes
2answers
101 views
Htaccess - redirect every request to a single page. Side effects?
I am creating my own mvc framework to use in little projects and by default, I am rewriting the url so that every single request goes to index.php. Index.php is only 4-5 lines, which calls the ...
0
votes
2answers
172 views
MySQL: SHOW PROFILES - Want to see more than 100 records
I am performance profiling my queries and need to be able to see a lot more than the last 100 queries. Max profiling_history_size is 100, but I've seen debug tools that somehow manage to save more ...
97
votes
10answers
10k views
Writing a binary file in C++ very fast
I'm trying to write huge amounts of data onto my SSD(solid state drive). And by huge amounts I mean 80GB.
I browsed the web for solutions, but the best I came up with was this:
#include ...
3
votes
0answers
179 views
Best server side language and database [closed]
We are planned to build a website and mobile apps for a project. To interact with database we need to build an API. It is expected that website and apps will be accessed by thousands of millions of ...
4618
votes
11answers
239k views
Why is processing a sorted array faster than an unsorted array?
Here is a piece of C++ code that shows some very peculiar performance. For some strange reason, sorting the data miraculously speeds up the code by almost 6x:
#include <algorithm>
#include ...
4
votes
2answers
805 views
High-performance realtime data display
I'm trying to find a tool for plotting data (mostly line graphs and such) that can be used for high performance applications. My data window typically contains between 500 to several thousand points, ...
2
votes
4answers
2k views
BOOST uBLAS matrix product extremely slow
Is there a way to improve the boost ublas product performance?
I have two matrices A,B which i want to mulitply/add/sub/...
In MATLAB vs. C++ i get the following times [s] for a 2000x2000 matrix ...




