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

learn more… | top users | synonyms (18)

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
60 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
34 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 = ...
438
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
0answers
17 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
28 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
39 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
94 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
28 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
94 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
21 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
10 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
35 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
100 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
179 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
15 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
18 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
30 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
67 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
24 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
89 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
22 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
80 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
14 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 ...
0
votes
1answer
82 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 ...
-1
votes
4answers
111 views

What is the Big Oh Efficiency of Program with Finite For Loop?

What would be the efficieny of the following program, it is a for loop which runs for a finite no. of times. for(int i = 0; i < 10; i++ ) { //do something here, no more loops though. } So, ...
-2
votes
0answers
51 views

Why accessing larger index in pandas series takes longer? [closed]

I have a function that I would like to apply element-wise to several series. def my_fun(s1, s2, p1, p2, p3, angle_cutoff, s_cutoff): a1 = xy2angle(p1, s1) a2 = xy2angle(p2, s2) if ...
-2
votes
0answers
28 views

Object Oriented Programming: Trade off between number of objects and size of objects [closed]

I am working on an object oriented Client-Server Model. The server sends some attributes and client parses these attributes to create objects. To improve performance, I thought of reducing the number ...
13
votes
1answer
108 views

e-commerce: Algorithm for calculating discounts

I'm in need of expert advice on a tricky matter. The scenario is: e-commerce web-site lots of products lots of discounts mixed on these products A product is identified by a unique ProductID and ...
0
votes
0answers
32 views

Jquery - Modifying to structure to submit form if successful

I've had some help creating some jquery code which is designed to submit a form if a geocode is successful. However, it doesn't do the submission bit yet and the structure/flow of things will need ...
0
votes
2answers
39 views

How to avoid bottleneck performance?

A distributed system is described as scalable if it remains effective when there is a significant increase the number of resources and the number of users. However, these systems sometimes face ...
5
votes
2answers
111 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 ...
0
votes
4answers
52 views

Is there any repetition in this decision structure?

Is there anyway to simplify this decision structure that I am not seeing? It seems to me that each statement is necessary in determining the correct order. Any insight would be much appreciated. def ...
2
votes
4answers
100 views

Optimizing for 3D imaging processes in C++

I am working with 3D volumetric images, possibly (256x256x256). I have 3 such volumes that I want to read in and operate on. Presently, each volume is stored as a text file of numbers which I read in ...
0
votes
3answers
64 views

Which is the most memory optimised layout in Android? [closed]

I have no clue if something like this exists in the first place. This was the question asked in an interview. Can some one throw light which is the most memory optimized layout in Android? As far as I ...
4
votes
4answers
98 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
23 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. ...
1
vote
2answers
43 views

Caching text/image assets in performance-constrained environments

I'm working on an extremely performance-constrained devices. Because of the overhead of AJAX requests, I intend to aggressively cache text and image assets in the browser, but I need to configure the ...
0
votes
1answer
67 views

FragmentPagerAdapter and FragmentStatePagerAdapter

I am currently thinking which implementation of PagerAdapter should I use. I've got dilemmas connected to both of them. Let me show you what are these. 1# FragmentPagerAdapter Works fine, It creates ...
1
vote
0answers
30 views

How can I make my Dynamic Linq query more efficient

I've written an mvc controller function to handle dynamic queries, it's working great but with some more complicated queries it's really bogging down as much as 15 second response time. I used ...

1 2 3 4 5 636