For questions pertaining to the measurement or improvement of code efficiency.

learn more… | top users | synonyms (18)

0
votes
2answers
43 views

Matlab: Speed-up reading of ascii file

I wrote this piece of code which works fine, but is way too slow for my purposes: %%% load nodal data %%% path = sprintf('%sfile.dat',directory); fid = fopen(path); num_nodes = textscan(fid,'%s %s ...
0
votes
4answers
68 views

MySQL Performance issue with large number of rows

I am developing a site based on XenForo engine, and have a problem in a query that fetches all threads and joins post table and forum table to get some information for the first post and forum the ...
-3
votes
1answer
28 views

Error on AsyncTask in Android App [closed]

I have two buttons in one screen. One of them is "GetOrder" and the other is "DeleteOrder". When I click "GetOrder" it's working well but when after that I click "DeleteOrder" the app will show this ...
2
votes
1answer
77 views

Why is my app using so many instances when I have so few requests?

My webapp gets about 0.4 requests per second. Does it really need 2-3 instances running all day long? Why is the "active" line in the graph so much lower than the "billed"? Note: I'm using F4 frontend ...
0
votes
0answers
22 views

Gmap3 clear and add marker too fast causes delay

I try to implement dynamic marker list come from server. I notice that when user click the button quite fast (0.5 sec/s for example), the markers re-appear with huge delay (sometimes over 3 secs)... ? ...
23
votes
0answers
302 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 ...
0
votes
1answer
30 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% ...
-2
votes
1answer
40 views

How to free memory at end of PHP script to make my database insertion script faster for the next request? [closed]

I have a PHP script that reads the contents of an XML file and then creates an object using $xml = new SimpleXMLElement($file_name, 0, TRUE); It then converts the object to a workable array and ...
-1
votes
0answers
92 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 ...
5
votes
1answer
69 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
1answer
54 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 ...
1
vote
1answer
29 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
34 views

PC performance and stability issue in multithreaded simple benchmark. How to make each thread run on separate core? [closed]

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
91 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
76 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
12 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
26 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
29 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
59 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
33 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 ...
0
votes
4answers
83 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 = ...
398
votes
4answers
34k 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
16 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 ...
5
votes
2answers
81 views

Fastest way to extract only certain fields from comma separated string in Python

Say I have a string containing data from a DB or spreadsheet in comma separated format. For example: data = "hello,how,are,you,232.3354,good morning" Assume that there are maybe 200 fields in ...
0
votes
2answers
25 views

How do I optimize the rendering of my HTML not SQL queries?

So I am using mini-profiler and it gives me some nice stats. However, one thing I have noticed is that I have gotten a lot of the SQL calls down to a minimum and now the biggest thing is the ...
0
votes
1answer
37 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 ...
6
votes
2answers
92 views

why isnt numpy.mean multithreaded?

I've been looking for ways to easily multithread some of my simple analysis code since I had noticed numpy it was only using one core, despite the fact that it is supposed to be multithreaded. I ...
2
votes
1answer
27 views

AS3 - add different event listeners to children or one to the parent?

I have a MC (a button bar) with 4 buttons. is it more efficient to add separate event listeners to each button or to add a single event listener to the parent and use e.target.name to detect which one ...
3
votes
4answers
92 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 ...
0
votes
0answers
20 views

Xaml image control stopping working after a while

I'm creating an image viewer software in C#, and I'm using an embedded Xaml image control to display the images because it's MUCH faster than rendering the images to winForm pictureBoxes. The images ...
0
votes
0answers
8 views

Jboss 4.2.2.GA Web Console

Is there a precise description of the monitoring values provided by the JBoss web-console? I am trying to understand those numbers are and how/when/where they are measured. For instance, in the ...
1
vote
2answers
34 views

Scraping much data from different URLs with simple_html_dom.php

i basically want to do exactly something like this: Simple Html DOM Caching i got everything to work so far, but now i'm getting the following error because i scrape many sites (6 at the moment, i ...
2
votes
2answers
98 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
1answer
48 views

Looking for a more efficient way of writing some basic if else jQuery script

I feel like my script is really redundant and could be written allot more efficiently. If anyone has a better way of doing this please share. Basically i am showing and hiding a div depending on what ...
6
votes
2answers
163 views

Why is my C# program faster in a profiler?

I have a relatively large system (~25000 lines so far) for monitoring radio-related devices. It shows graphs and such using latest version of ZedGraph. The program is coded using C# on VS2010 with ...
0
votes
1answer
30 views

Jquery form submission not being triggered

I have been trying to design a javascript for over a week (I'm new to JS) which geocodes a location when a search button is hit and the submits the form if successful. To make it to slightly more ...
0
votes
2answers
14 views

Downside(s) of using HTTPs only on parts of the site

I am managing a shop that forces HTTPs on the register/login/account/checkout pages, but that's it, and I've been trying to convince people to force HTTPs on everything. I know that it's recommended ...
-1
votes
0answers
15 views

Phone internal memory vs sd card mb/s for large files

I have a Galaxy Nexus with only 32gb and constantly have to delete old stuff (pictures) to add new items (some pics are 300 MB each). I am considering upgrading to the Galaxy S4, but it only currently ...
-1
votes
0answers
28 views

Calculating an appropriate Ramp/Pacing time for Performance Test

I'm trying to run some performance tests on a web application but I am struggling a little with how long to set the ramp up period. I'm running tests, that will execute a specific series of requests, ...
1
vote
2answers
63 views

MySQL WHERE IN (SELECT id from …) fastest approach?

I am using a query like this: SELECT * FROM videos WHERE id IN (SELECT video_id FROM videos_tags WHERE tag_id = 2) to search videos with the same tags, but with about 8'000 videos this query is too ...
1
vote
4answers
109 views

What is the fastest way to read a sequence of images?

I have a speed critical program that will repeatedly reads images from disk and compute values from them. The images are too many to store in memory. The same set of images will be read, we will not ...
1
vote
0answers
23 views

Symfony2 AppCache performance boost

We're trying to figure out what effect enabling AppCache in the frontend controller has on caching without calling any cache directives on the response object. I had presumed that simply adding the ...
3
votes
1answer
39 views

How to find what is consuming mobile data transfer (MB) in my Android app?

I'm developing an application that needs a service to syncronize data beetween Android and a web service PHP. In the same app I have a ArcGIS Android map. I'm not able to find what is totally ...
-7
votes
4answers
57 views

What is the runtime complexity of the following method considering the simple statements? [closed]

Here is the code in java: void test(int n) { int i, j; ///first loop for ( i = 1; i <= n; i ++) { //second loop for (j ...
0
votes
3answers
87 views

Lightweight Map implementation Java (little memory overhead)

I am currently writing some code in java meant to be a little framework for a project which revolves around a database with some billions of entries. I want to keep it high-level and the data ...
0
votes
1answer
20 views

Improve Website Performance Cache static content issue

I am using webpagetest to know my website performance.I am found issue with Cache static content i.e. "Leverage browser caching of static assets: 88/100" FAILED - (No max-age or expires) How can i ...
0
votes
0answers
37 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
79 views

Test performance

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 ...
2
votes
1answer
39 views

Would this code fetch the elements every iteration?

Normally, I would write code like that. auto elements = get_elements(); for(auto i : elements) { // ... } I wonder if I it would make any performance difference to use the code below instead. ...
0
votes
1answer
12 views

WPF: Fast clearing a VisualHost with thousands of Children

In a WPF application I'm using a VisualHost with a Children collection. This children collection contains around 10000-30000 DrawingVisuals. Drawing these DrawingVisuals takes around 600 ms. Thats ...

1 2 3 4 5 636