For questions pertaining to the measurement or improvement of code efficiency.
1
vote
0answers
6 views
ViewResult.ExecuteResult taking too long
I have an asp.net mvc4 application, and when I publish it to azure it's taking too long to load pages. I installed glimpse to check where is the problem, and it showed me that ViewResult.ExecuteResult ...
1
vote
2answers
22 views
Tomcat process killed by Linux kernel after running out of swap space; don't get any JVM OutOfMemory error
I was performing load testing against a tomcat server. The server has 10G physical memory and 2G swap space. The heap size (xms and xmx) was set to 3G before, and the server just worked fine. Since I ...
0
votes
0answers
10 views
WPF performance slows with visual tree depth BUT only after showing drop down content
Create a deep visual tree by placing 20 ContentControl instances inside each other with a Label at the bottom of the tree. Run the application and resize the window using the mouse and everything lays ...
0
votes
0answers
24 views
Tune a simple inner join query
I am trying hard to tune my SQL query. I am relative not an expert in tuning SQL as i come from MDBMS tech
Here is the query
SELECT
/*+ parallel(f 4) */
F.DM_CUSTOMER_DKEY,
P.PRODUCT_YEAR,
...
0
votes
1answer
12 views
PHP RSS feed reader efficiency
I'm reading data from an XML feed as follows:
$data=file_get_contents("mydata.rss");
$data=simplexml_load_string($data);
foreach($data->channel->item as $item){
$articles[] = array(
...
0
votes
0answers
9 views
dispaly a big number of windows event logs with datagridview c#
i'm developping a c# application which explore windows security events log in a local area network.The problem is the application takes much time to display all events log (number of logs>200k) in a ...
6
votes
3answers
41 views
How to fix my numberOfDigits function
Came across some code where the number of digits was being determined by casting the number to a string then using a len().
Function numOfDigits_len(n As Long) As Long
numOfDigits_len = ...
14
votes
1answer
245 views
Why does setting textContent cause layout thrashing?
This blog post suggests that textContent is preferable to innerText for avoiding layout thrashing. But it is focused on retrieving an element's text; for setting element text, the opposite appears to ...
0
votes
0answers
37 views
Smooth UI while parsing JSON
I have a app which parses some big JSON files.
The parsing is done in it's own thread with the lowest priority. However, while I'm parsing the UI becomes almost completely unresponsive.
I'm using ...
0
votes
3answers
16 views
is calling libgdx SpriteBatch begin and end method multiple times expensive?
Are the libgdx SpriteBatch begin and end methods expensive for the processor or make the performance slow if I call them multiple times?
For example:
public void render(float delta) {
GL10 gl = ...
2
votes
1answer
60 views
Memory management and speed in for-loops
I've just read that in a text-book, so I wanted to know if that's actually true.
Let's say, we have an array with some values in it that we want to iterate through:
for(int x = 0; x < ...
0
votes
1answer
15 views
How do I control the brightness of the backlight in android immediately?
I'm working on an app that needs to turn on and turn off the backlight of the screen fast, very fast.
Something like off for 10ms, and then on for +-1ms.
I have tried to use this code with a handler ...
1
vote
3answers
72 views
Speed Test causing weird behavior. Multiplying time spent by 100 in one instance, only 10 in another
I am doing a speed test with three functions, readFile, prepDict and test. Test is simply prepDict(readFile). I am then running these many times with the timeit module.
When I increase the number of ...
1
vote
2answers
21 views
speeding up scipy.integrate.quad()?
I'm trying to speed up the following code which computes a sum of integrals. To get good accuracy I need to increase L_max but that also makes the execution time much longer. The specific case below ...
0
votes
0answers
13 views
Require.je vs mod pagespeed
I am planning a new website with several assets (js/css).
I want to combine those assets to one js file and one css file. I am not sure if using server side technic, such as pagespeed (which has ...
0
votes
0answers
53 views
Database Information: More Joins or more Queries [closed]
This is a question on multiple fronts. Firstly, I'm saving an object from Java into the database by the object's internal structure (I'm not serializing). The structure of the object is as follows: ...
5
votes
1answer
128 views
Transform string from a1b2c3d4 to abcd1234
I am given a string which has numbers and letters.Numbers occupy all odd positions and letters even positions.I need to transform this string such that all letters move to front of array,and all ...
0
votes
1answer
26 views
Structuring NodeJS asynchronous code to make it more memory efficient
I'm trying to set up a simple document feeder to benchmark ElasticSearch and I've chosen NodeJS because I thought it would be easiest to work with simple JSON structures. Unfortunately, it seems that ...
2
votes
1answer
33 views
Why :hover is so slow in webkit browsers over large numbers of DOM elements
When there are numerous DOM loaded with javascript elements styled with :hover pseudo class (like a long table), the effect is rendered slow/laggy in Chrome & Safari. Firefox appears to handle the ...
0
votes
0answers
2 views
Logparser - querying the remote event log
How safely can I use the LogParser 2.2 utility while querying the remote server's event log, in terms of CPU/memory/network?
I would like to perform a few event log queries on the production ...
7
votes
1answer
149 views
Is using std::async many times for small tasks performance friendly?
To give some background information, I am processing a saved file, and after using a regular expression to split the file into it's component objects, I then need to process the object's data based on ...
0
votes
0answers
17 views
Highstock vs Google Charts in Performance
A) I'm using the Highstock charting library for a finance project of mine. However, I'm getting bogged down in performance issues. My working implementation of Highstock has i) 5 graphs in a chart ii) ...
0
votes
3answers
30 views
What is faster? Firing a query within a loop or looping trough an array?
I was just asking myself what is faster: I have a for loop where I have to check a certain table column against my loop variable.
Now I have two options: Within the loop I fire a query for each ...
0
votes
1answer
16 views
Does the target attribute affect efficiency of Fortran programs?
I have read difference between POINTER and ALLOCATABLE and Why does a Fortran POINTER require a TARGET? and they have really good answers.
It seems that the most efficient choice is to use ...
0
votes
0answers
11 views
Wordpress admin so slow related to theme
My configuration
- WordPress Version : 3.5.1
- PHP/MySQL Version : 5.3
- Theme : Sterling
- Plugins : Seo Yoast ; BackWPup ; BulletProof Security ; Google Analytics for WordPress ; LayerSlider WP
...
0
votes
2answers
75 views
Why is it faster to attach the visual debugger to my program than to run it directly from visual studio?
I have been struggling with performance issues for quite a while, and I have recently realized that the performance I obtain when running from visual studio don't mean anything.
What surprises me ...
2
votes
1answer
49 views
Ember.js rendering slow in IE 7
We created a web application using EmberJS (version 1.0.0-rc5). We notice great performance in Chrome, unfortunately we have to support Internet Explorer 7 as our main platform.
We notice that ...
-1
votes
0answers
9 views
Fastest way for public debugging: log to console or append data to a div? [closed]
For a (PHP/Ajax/jQuery) project I want to output certain information for debugging. As a developer I tend to use and implement console.log(), but when I want users to check or provide feedback I ...
0
votes
1answer
32 views
How to take data from the database
I have to make a database of question and their answer.I made it using sqlitedatabase browser
and put in Assets folder.
This is my code to retrieve the row of a particular question id.
Some ...
0
votes
1answer
18 views
Find the nearest even number to passed one in MongoDB
I run MongoDB 2.4.4-pre- under Linux. I've got a table with elements each of which has a field named "num". This field contains a positive integer. What have my query to look like to find the element, ...
-5
votes
0answers
59 views
8 puzzle how to get better time [closed]
At first i want to apologize for my bad knowledge of English. If i do some horrible mistakes please draw my attention to those. I am writing here because I have no idea how I can improve code of 8 ...
1
vote
1answer
20 views
ListView: each row associated with a different webservice
I'm using a listView in my app where every every row of listview gets its data from a different webservice. Currently, I'm doing this in the following fashion:
public View getView(final int ...
0
votes
0answers
19 views
Query take along time! is that server issue? [migrated]
When Query run on Server (shared-server) it takes (2.5332 sec)
But when I run the same Query on anther Server (dedicated-server) It takes only (0.0205 sec).
I don't know where is the issue !
Is that ...
0
votes
3answers
35 views
How to design database for a faster access? [closed]
I have some question in designing a data base.
1. The question is which is better between:
a. one entity some attributee.g=> people:id,name,address
or
b. some entity one attributee.g=> name:id,name ...
0
votes
1answer
17 views
Faster way to compress array of doubles
I am using code I found in another question to compress an array of doubles and then test the size. I do this a huge number of times. Can I make this code more efficient?
public static byte[] ...
0
votes
1answer
19 views
Android: obtain computation time in NDK
I need to obtain the computation time of some parts of an algorithm I have implemented in C with NDK/JNI.
I've read this question: Android Get Current timestamp?
I think I can obtain the computation ...
0
votes
0answers
16 views
Skrollr iOS issues
I'm having issues with a parallax site I am building using Skrollr.
I've built a site that has the same effect as https://www.spotify.com/uk/. The effect being large full width background images ...
0
votes
3answers
49 views
Avoiding duplication of code for jquery function
I have this script (one of my first) which I have had a bit of help developing:
http://jsfiddle.net/spadez/AYUmk/2/
var addButton =$("#add"),
newResp = $("#resp_input"),
respTextArea = ...
0
votes
2answers
50 views
How to handle jQuery on click the right way?
I'm making a little web app with an Off Canvas menu where each item executes a specific function. My research with Google revealed that jQuery's .on("click", ... is better than the attr ...
0
votes
2answers
36 views
Javascript - Efficiency for scroll event, run code only once
These if statements are always making me dizzy. If have a page with a header, and a hidden header above that in the markup.
<div id="headerfloat" style="display:none;">
<p>Floated ...
0
votes
0answers
40 views
Speed up my rails app
I have a very big rails app, it works very well, but there is a page that is very slow! It takes something like 2 minutes to complete the loading.
The page contain a calendar, where I insert a lot of ...
2
votes
2answers
63 views
SQL, optimizing my query: UNION vs OR
I have a query along these lines:
SELECT e.firstname, e.surname
FROM employees e, cities c
WHERE e.cityid = c.id
UNION
SELECT e.firstname, e.surname
FROM employees e, cities c
WHERE e.cityid = ''
...
0
votes
2answers
27 views
Attaching event handlers on the fly
I'm attaching an event handler to a table cell. The table is generated after clicking on the search button. The search button also generates a link, which when clicked, opens a modal popup that has ...
0
votes
0answers
28 views
Looking for a c++ library to calculate custom metrics/stats
Anyone know of any C++ libraries to calculate custom metrics or statistics? Something like performance counters on windows, but not build into the os.
A class where I can just call increment and then ...
0
votes
7answers
97 views
if-else or just declaration-if in conditional value
Suppose I have a variable that depends on a condition. From the efficiency perspective, should I use
int s;
if (d > 2)
{
s = -1;
}
else
{
s = 1;
}
or just
int s = 1;
if (d > 2)
{
s ...
2
votes
1answer
29 views
why does Oracle take another execution path on a view
We are using a view on a oracle 10g database to provide data to a .NET application. The nice part of this is that we need a number(12) in the view so the .NET apllication sees this as an integer. So ...
2
votes
1answer
34 views
How to improve the performance of stored procedure?
I have 2 questions about improving the performance of stored procedure:
1) In SELECT clause:
,CASE WHEN vatcs.CashDeskId IN (1293,1296,1295) THEN 1 ELSE 0 END --Кассы-метро
,CASE WHEN ...
1
vote
2answers
34 views
Why same software is taking more time than it took previously?
I am not sure if this a question to be asked in this site. But I am helpless.
I have developed a win form application for my office which imports data from text file into database table. It is ...
0
votes
1answer
16 views
How to get MS SQL SERVER Database wise CPU usage report
I am using Sql Server 2008 Standard Edition in my PC. There is more than 30 databases are
running in my Server. I am try to generate a report based on database wise CPU usage
report. Is possible ...
-1
votes
2answers
81 views
More efficient way other than setTimeout() [closed]
The time delay given in setTimeout() works differently for Windows and Ubuntu?
Why is that?
Is there a better way?





