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

learn more… | top users | synonyms (18)

3
votes
1answer
14 views

Postgres: Optimizing querying by datetime

I have a table that has a datetime field "updated_at". A lot of my queries will be querying on this field using range queries such as rows that have updated_at > a certain date. I already added an ...
2
votes
1answer
40 views

Need to fasten my Java code

I am a fairly new java programmer and trying to solve problems from the Spoj. But the problem for me is not the actual difficulty of the algorithm; it is the performance of my Java code as it usually ...
0
votes
1answer
18 views

Inserting a list of complex objects to the database

In my application I'm going to have some list of a complex object I'm going to insert into a database. The list is attached to a user, so I thought about adding a column with a list of IDs to the ...
4
votes
4answers
117 views

What's faster: Regex or string operations?

When should I use Regex over string operations and vice versa only regarding performance?
0
votes
0answers
16 views

jquery function running in a date time period

I'm developing a website for stock exchange, I'm using cakephp 2.3 for the website but for the ticker of stock exchange values, I'm using jquery to display them as static values . but the problem is ...
1
vote
0answers
22 views

Build a .lib with the Intel C++ compiler and use with app in VC++?

I'm using VC++ 2012 to compile a solution with 2 projects. The main library is a Class Library project which simply outputs a .lib file, and the second is an Application, which uses the compiled ...
0
votes
0answers
19 views

Reasons for omp_set_num_threads(1) slower than no openmp

I believe everyone agree with the title of this post. Can someone point me the reason ? Any reference to that like book etc ? I have tried to find but no luck. I believe the reason is something about ...
0
votes
2answers
18 views

How to change fade InOut timing in jQuery?

Below is some jQuery to fade in and out list items sequentially. This code makes the list items fade in and out very fast. How do I control the speed? function InOut( elem ) { elem.delay() ...
-1
votes
1answer
43 views

doing another ajax call in complete jquery [closed]

This is working without any problem.But i need to know is there any better code or ajax setting do i want to add it for this.In the jquery API documentation there are so many ajax settings.If anyone ...
1
vote
1answer
18 views

Does python logging flush every log?

When I write a log to file using the standard module logging, will each log be flushed to disk separately? For example, will the following code flush log by 10 times? ...
0
votes
1answer
20 views

Big(0) running time for selection sort

You are given a list of 100 integers that have been read from a file. If all values are zero, what would be the running time (in terms of O-notation) of a selection sort algorithm. I thought it was ...
0
votes
2answers
33 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
56 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

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
46 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
10 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)... ? ...
17
votes
0answers
189 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
22 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
36 views

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

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
88 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 ...
3
votes
0answers
25 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
51 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
31 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
86 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
75 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
25 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
56 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
30 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
76 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 = ...
62
votes
3answers
1k 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
12 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
31 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
86 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 ...
2
votes
2answers
72 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 ...
3
votes
2answers
107 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
0answers
32 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
70 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
57 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
98 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, ...
5
votes
2answers
103 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
92 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. ...
0
votes
1answer
33 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 ...
3
votes
1answer
75 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
188 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 ...
0
votes
3answers
65 views

Performance update in Aggregate query

I would like to improve the performance of the following in aggregate query. On T_Search_Detail with 30 million records, below Query takes 12 seconds to execute? can it be written better, suggestions ...
-3
votes
0answers
42 views

Android App hangs sometimes

I have developed an app with a button when clicked schedules message at the set time and date. everything goes well but some times when scheduler button is pressed the app hangs and forcely closes. ...

1 2 3 4 5 634