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

learn more… | top users | synonyms (18)

16
votes
3answers
197 views

Performance: Pure CSS vs jQuery

I've seen a number of code comparisons between pure CSS and the equivalent jQuery. But I'm looking for details about why pure CSS is definitively faster than jQuery. Here's are some of the reasons ...
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 ...
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 ...
3
votes
2answers
29 views

Is ListView faster than GridView?

I have an app that lists images up until now I've been using and ListView, and is very happy with it, it´s fast and smooth. But now I want to implement a landscape layout as well, and I'm thinking an ...
2
votes
0answers
22 views

Automation process-Inserting a new teststep in a testcase

I work for a product development team and the problem which i am facing is very specific to my team. As I am not able to come up with any solution, so i am asking it here. Scenario: In my testcase, ...
0
votes
0answers
21 views

Over time Application built in FlashBuilder runs slower and slower

I have an application built in FlashBuilder written in actionscript that when I launch the application its very responsive and smooth running. However, over time and after interacting with some ...
0
votes
3answers
68 views

How to efficiently insert millions of datasets to a MySQL database using PHP? [duplicate]

I run a PHP script that reads data rows from a file, analyses them and inserts them one by one into a local MySQL database: $mysqli = new mysqli($db_host, $db_user, $db_password, $db_db); if ...
0
votes
3answers
48 views

Javascript object sum value based on properties effeicently

I do have three objects inside an array in JS like below [{"2013-03-02T00:00": 300}, {"2013-03-01T00:00": 200},{"2013-03-02T00:00": 50}] I want something like below as output from the above array. ...
0
votes
0answers
7 views

Ink writing performance over RDS 2012

I have a winforms application that uses Microsoft.Ink libraries heavily and runs on windows tablets (not the surface, regular tablets with the full windows OS either W7 or W8). We want to move this to ...
-2
votes
1answer
79 views

What 's Big O notation on this specific code? [closed]

I want to know Big O notation and Big Omega notation (worst case, best case) of this code It is a sorting algorithm and my guess is that it has a O(n) and Omega(n) : public static void swap(int[] ...
1
vote
2answers
25 views

How to use a progress bar when my app is reading data from a file ? Right before the start of the application

I am trying to write an application, where many rows of data are being extracted from a text file. This is done when i start the application. I want to show a progress bar to the user, when he clicks ...
3
votes
0answers
29 views

Android app navigates to launch activity when coming from background

I have 3 activities ( say A, B, C were A-is the Launch activity). When I press home button when at activity C, app goes into background. After that, I took my app through all apps list menu. At that ...
0
votes
0answers
11 views

Entity Framework 5 unnecessary loading of records

I'm using Entity Framework 5 (C#) and I'm finding that unnecessary loading of records in the following case is causing performance issues. I have created a messaging application, where messages are ...
-2
votes
1answer
42 views

How reduce mysql cpu usage In the below case [closed]

I am creating a campaign tracking site. This is having 100 of tables. I am creating a new table for each month for logging my searches and clicks using CREATE TABLE IF NOT EXISTS (The table consists ...
0
votes
1answer
17 views

Which is a better way to extract grayscale pixel values in Android in terms of battery drain and processing time?

hope you are all well. I am at a somewhat of a crossroads in my current project, I am needing to extract grayscale pixel values that will be sorted as per the discussion in my previous post (and very ...
0
votes
1answer
27 views

IntentService is hanging UI in android

In IntentService i am using ThreadPoolExecutor poolSize 8 and maxPoolSize 10. When ever Service is started it will effect on UI. In runTask() method i am add tasks to thread pool. private ...
0
votes
0answers
23 views

How to improve Search for Domain Name Availability performance

I am trying to create a website which will return domain availability result immediately once people finished typing. However after trying multiple PHP default functions, e.g. checkdnsrr & ...
1
vote
1answer
37 views

Does a code that combines single() with yield make any sense?

I came across a code which should return the single object expected in a list, this code has an iterator block which yields the found items, i have simplified the case in the following example: ...
-1
votes
0answers
29 views

Is there a list of JavaScript operations by performance? [closed]

It would be really enlightening to see a list of benchmarks comparing how expensive are certain operations such as function calling, creating an array, creating an object, summing 2 numbers and so on. ...
-5
votes
2answers
44 views

Shapes & Best practice - CSS Tricks, Image or SVG? [closed]

What's would be the best practice to draw any Shapes ? From simple shapes, to complex ones. How to choose which solution would be the best. Draw a Shape with : Some css tricks (border, gradient, ...
0
votes
1answer
31 views

Is including unused JavaScript files a bad practice? [closed]

I use jQuery in lots of websites, for obvious reasons. So I simply include it in a header.php file. I also include other JavaScript libraries so in the end I get something like this: <script ...
0
votes
1answer
33 views

Windows kernel queuing outbound network connections

We have an application (a meta-search engine) that must make 50 - 250 outbound HTTP connections in response to a user action, frequently. The way we do this is by creating a bunch of HttpWebRequests ...
0
votes
0answers
40 views

openMP pragma for doesn't improve the performance [duplicate]

I'm trying to improve the overall execution time of my code using openmp. here is the code: #pragma omp for private(y, x, bufi0) for (y = 0; y < h; y++) { bufi0 = ksize-1; ...
4
votes
4answers
87 views

How to select rows with exactly 2 values in a column fast within a table that has 10 million records?

I have a table (TestFI) with the following data for instance FIID Email --------- null a@a.com 1 a@a.com null b@b.com 2 b@b.com 3 c@c.com 4 c@c.com 5 c@c.com ...
4
votes
1answer
46 views

Should I use process.nextTick or setImmediate for asynchronous iteration?

I'm working on a JavaScript library that provides, among other things, map/reduce functions on sequences that can be iterated asynchronously. A helpful soul on GitHub suggested that for Node.js, I ...
0
votes
2answers
53 views

Get online users - node.js vs php+mysql [closed]

I am developing a web application for a client that requires me to know the names of all users currently online. The entire application is built in php with jQuery used for the front end delivery. ...
0
votes
0answers
17 views

Android degrading performance when switching apps via intents

I have a simple benchmarking app that creates a thread, and from that thread, a modified version of Browser is repeatedly launched. I log the time before I launch, and then in the onResume() method of ...
0
votes
3answers
56 views

PHP performance with global and local variable instantiation [closed]

I have a large number of PHP functions that are taking $GLOBALS['foo'] and instantiating it local to that function like this $foo = $GLOBALS['foo']; I'm aware that this is a performance hit to some ...
0
votes
3answers
53 views

the best way to get only one object in jquery

I'm building a plugin in jquery. As they say in the docs, this references to a jquery object. so you can do a .each() and then return as many objects as you get in the plugin constructor. However, ...
0
votes
1answer
33 views

spring @transactional preformance

lets say i have a service bean that has 2 methods: @Transactional(readonly=false) public void doSomething() @Transactional(readonly=true) public void doSomethingReadOnly() and 2 variations of a ...
0
votes
1answer
48 views

How does adding thumbnails slow down my website a lot?

When I add 15 thumbnails(4kb-5kb each) my website tends to slow down a lot or even crashes on 2.5k users online, and without them it can take up to 4.5k-5k. I made a script that will make thumbnail ...
0
votes
7answers
116 views

if else code blocks … or one if with multiple OR ( | |) conditions within it ? in C

I was writing a small text matching program in C, which basically checks for the presence of a few characters in some strings (in form of char arrays). Its working now and I have a code block like ...
1
vote
2answers
41 views

Javascript test method not working ( as expected )

Regular expression [A-Za-z_-]+ should match strings that only have upper and lower case letters, underscores, and a dash but when I run in chrome console /[A-Za-z_-]+/.test("johmSmith12") ...
0
votes
1answer
23 views

are there text-filtering filters for IndexedDB?

I have a database of about 64000 products, and when I'm trying to find some with certain text in the name, I need to iterate over all 64000 of them, checking each one individually with a function. Is ...
1
vote
1answer
38 views

How to optimize the following double for loop in octave?

I have the following code in octave: dist=0; for i = 1:length(x); for j = 1:length(y); v = x(i,:) - y(j,:); distvect(j) = norm(v); endfor dist = dist + ...
1
vote
0answers
36 views

Performance on PHP sql queries [closed]

I'm barely learning PHP and MYSQL so I don't know much about performance, I've wrote this script to fetch and format content from my DB, it also counts how many result are and separate them in to ...
0
votes
0answers
23 views

Reduce Choppy Scrolling in Objective-C?

I've read several other topics on stackoverflow about this, but none helped solve the issue. My app loads images from the web, and the user can scroll and the app will load more and more images. It ...
2
votes
1answer
75 views

Fast way to test whether n^2 + (n+1)^2 is perfect square

I am trying to program a code to test whether n^2 + (n+1)^2 is a perfect. As i do not have much experience in programming, I only have Matlab at my disposal. So far this is what I have tried ...
0
votes
2answers
114 views

Does a function that returns a constant work slower than a void function? [closed]

Simplest example to highlight the difference: int foo() { doSomething(); return 0; } void bar() { doSomething(); return; } int main() { foo(); bar(); } Is bar faster than foo, ...
0
votes
0answers
12 views

ace javascript editor multiple instances

I'm working on an interface that uses a digraph to model a software pipeline where each node has associated metadata and (most relevantly) an editable code block. Right now I'm using ACE for its many ...
0
votes
0answers
24 views

WPF combobox's SelectedItem very slow

I am using comboBox.SelectedItem = myView myView has Id, Type, Captionall string types and I have about 600 in the list. The debugger takes about 5 seconds to go to next line...
0
votes
0answers
56 views

Play Framework 2.1 : Performance issue with play.libs.WS

I have a Play 2.1 Java webservice, that calls another webservice. My service serves JSON made with transforming the XML response of the other webservice. Initially , I was using a Jersey-Client lib ...
1
vote
2answers
60 views

Postgres Hash Join speed [closed]

I have 3 tables which I wish to join using inner joins in Postgres 9.1, reads, devices, and device_patients. Below is an abbreviated schema for each table. reads -- ~250,000 rows CREATE TABLE reads ...
4
votes
3answers
122 views

moving elements of array in c, is there a better option

I am reading input from file (line by line) Each line is a state of a game board. Below is example of input: ...
0
votes
0answers
46 views

HttpUrlConnection overhead

I am developing an application that splits http trafic across two devices. As such, device A sends HEAD requests to specific resources (images) on a webpage, and then device A downloads some of these ...
1
vote
2answers
43 views

Phalcon php vs node.js

We are going to develop rest server for our application (and all logic is on client javascript). So we thought to use Phalcon php, but we also need to create realtime chat system, which is much more ...
1
vote
0answers
38 views

Is it possible to capture the iOS GPU frame time using XCode or XCode Instruments?

I am trying to write an automated profiling tool which will use XCode Instruments to load and run an iOS game, and gather profile and timing information about the rendered scene in the game. ...
0
votes
1answer
41 views

app closed unexpextedly android studio

I am currently working on a fahrenheit to celsius converter android app. I tried runing the app on the emulator and every time it gives "your app has stopped suddenly" error. tried many things like ...
0
votes
0answers
25 views

Fastest way to find 5%ile from 2D numpy array?

I know that there is numpy.percentile(myArray,5), but I understand that behind the scenes this will first do a complete sort of the array, which is inefficient if I only need the smallest 5% of values ...
0
votes
0answers
26 views

There is nothing innately slow about GolfScript. (…) Analysis could be done to remove most if not all stack use. Explain?

From http://www.golfscript.com/golfscript/syntax.html , Ruby is slow to start with so GolfScript is even slower. There is nothing innately slow about GolfScript. Except for the string evaluate ...

1 2 3 4 5 636