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

learn more… | top users | synonyms (18)

1
vote
2answers
43 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
26 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
41 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
25 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
79 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
115 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
16 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...
2
votes
0answers
66 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
123 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
50 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
60 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
51 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
63 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 ...
2
votes
2answers
38 views

Faster way to analyze each sub-window in an image?

I'm trying to calculate the entropy feature of sub-windows in an image. Here is the code I wrote: def genHist(img): hist = np.histogram(img, np.arange(0, 256), normed=True) return hist[0] ...
-1
votes
0answers
20 views

How to find speed of wlan interface? [closed]

I'm trying to find speed of network interface using file-descriptor. I't easy to do it for ethX, just calling cat /sys/class/net/eth0/speed. Unfortunately this method doesn't work with wireless ...
0
votes
1answer
111 views

creating delphi timers dynamically at runtime (performance, cpu consuming)

In my current project I have a structure like this: Main Thread (GUI): ->Parser Thread ->Healer Thread ->Scripts Thread the problem is that the Healer & Scripts Threads have to create ...
2
votes
2answers
80 views
+50

How to turn queries to perform efficiently in rails?

Consider i have a 15 categories and 6 sub-categories and i have table items where i have set of records where i have to fetch in the following manner category 1 ---> level 1 ---> 3 items with ...
0
votes
1answer
33 views

What is the most efficient way to search multiple times in a large database MySQL

I have GEO ip location database where each countriy has a range of IP associated with it. country | ip_start | ip_end I have a very large list of ip (1 million) and i need to associate each ip to ...
3
votes
0answers
112 views

C# 'as' vs 'is' + cast performance [duplicate]

I was reading through Jon Skeet's "C# in depth" second edition when I stumbled upon a paragraph in chapter "Nullable types": SURPRISING PERFORMANCE TRAP I'd always assumed that doing one check ...
-1
votes
1answer
39 views

Real world uses of memcached for a website [closed]

I am trying to implement memcached into my website. I have an image gallery where images are rarely changed (deleted etc). They are kept in a database. now I know I could cache the result set ...
0
votes
1answer
29 views

Decrease time searching images in folder

I've built a site in PHP, where the user can choose which image folder that they want to see. There's more than one folder and each folder have more than 10,000 images. However, I simply want to find ...
1
vote
4answers
76 views

how can I clear a bitmap memory in real time?

I create 14 Bitmap objects like this: bmp[0]=BitmapFactory.decodeResource(getResources(), R.drawable.a0000); bmp[1]=BitmapFactory.decodeResource(getResources(), R.drawable.a0001); ...
3
votes
2answers
56 views

Prototypes or closures for execution consistency and performance? [closed]

What is the best compromise between performant execution and execution time consistency for method calling in javascript? I'm still learning javascript and would use prototypes for most everything ...
1
vote
2answers
47 views

How to get % Memory usage of a process using Performnace Counter in C#

I want to get the % of memory used by a process. Right now, I'm able to get only the available memory by using: PerformanceCounter pc = new PerformanceCounter("Memory", "Available KBytes"); Is ...
2
votes
2answers
25 views

Set Relative link in a js file to come from files source rather than domain

I have a site http://www.example.com I serve my static files from a different domain. eg http://www.eg.com in my js file which is located at http://www.eg.com/js/myscript.js I have a variable ...
-3
votes
0answers
12 views

Animation mechanics / performace (In general and in Android in particular) [closed]

There's often said that if the app needs massive animation then standrard tools are not applicable. But in fact when u do any kind of animation u want to update the screen with some frequency so that ...
0
votes
1answer
32 views

Performance: onCreateView vs dynamic loading

I'm at a point right now where a piece of my UI layout will be based on certain conditions. The layout is made of 2 portions. The upper half is fine. The lower half, however, I am debating between ...
2
votes
3answers
71 views

UIImage setImage is very, very slow

I'm trying to load an image from a local URL using the following: UIImage *image = [UIImage imageWithData:[NSData dataWithContentsOfURL:fileURL]]; [self.imageView setImage:image]; NSLog(@"imageView ...
1
vote
3answers
52 views

How can I change this function call and algorithm to find the string with the smallest value in a list of size n. w/o the min function

How can I change this function call and algorithm to find the string with the smallest value in a list with size n. Also I am aware of the built-in min function, I am simply trying to understand the ...
1
vote
2answers
48 views

Javascript isn't firing in <script> but works in the phonegap function onBodyLoad(), why is this?

Earlier I asked a question about showing or hiding a div when a radio button is selected. The solution provided is here http://jsfiddle.net/MFJUv/1/ I'm using phonegap. When I place the javascript ...
0
votes
0answers
24 views

Web Services: WCF or Python based services

Task: We are looking to develop a WebService that basically performs certain management operations on files such as indexing, compression, streaming. the file can be anything from text to images to ...
0
votes
1answer
23 views

Possible Error with an item on the AP Computer Science Exam

I took the AP Computer Science Exam this year, and one of the questions, number 16 for me, appeared to actually not have a completely correct answer (although it was clear which answer the AP people ...
0
votes
3answers
19 views

Checking for new data on server

I have an application that downloads data via NSURLConnection in the form of a JSON object; it then displays the data to the user. As new data may be created on the server at any point, what is the ...
3
votes
3answers
56 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
2answers
65 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
47 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 ...
3
votes
4answers
158 views

What's faster: Regex or string operations? [closed]

When should I use Regex over string operations and vice versa only regarding performance?
0
votes
0answers
29 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
34 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
2answers
44 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
20 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
44 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 ...
2
votes
1answer
28 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
30 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
44 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 ...

1 3 4 5 6 7 638