For questions pertaining to the measurement or improvement of code efficiency.
1
vote
4answers
90 views
Does a large number of very simple sql queries impact performance?
I have search filters. Each filter/attribute have own values I need to show.
<?php foreach(getAdditionalFilters() as $attributeName => $filterData): ?>
<ul>
<?php ...
0
votes
3answers
28 views
Why is ActiveRecord destroy_all taking so long?
I have a simple rails app with articles and comments running on MySQL 5.5, Ruby 1.9.3 and rails 3.2.12:
class Article < ActiveRecord::Base ...
0
votes
3answers
296 views
Efficient database access to various DBMS from Delphi XE2
My needs
I work with Delphi/C++Builder XE2.
I need to access at least these DBMSs:
Firebird
DB2/400
SQL Server
SAP HANA (a new in-memory DB, available interfaces: JDBC, ODBC, ODBO, SQLDBC)
I ...
1
vote
2answers
999 views
Payload performance in Lucene
I know there are several topics on the web, as well as on SO, regarding indexing and query performance within Lucene, but I have yet to find one that discusses whether or not (and if so, how much?) ...
0
votes
2answers
215 views
How much will a timer event slow down my code in JavaScript
I am currently building a rather large web based application. My job is to build the interface using JavaScript and jQuery. Eventually the application will be using Ajax, C# and SQL. There is thus ...
-6
votes
2answers
65 views
Faster Code Anyone? :)
EDIT: shaved roughly 10% processing time with:
register int16_t *libwordPointer = libword;
int16_t *nReset;
register int16_t *wordsPointer = words[word];
int16_t *mReset = wordsPointer;
for( int ...
16
votes
1answer
423 views
SDCH compression for Node?
Is there a SDCH (Shared Dictionary Compression over HTTP) library for Node? (Or any other implementations for that matter?)
A quick search on npm yielded nothing.
2
votes
1answer
55 views
Do precalculated parameters aid performance?
For instance, if I'm operating on an m x n matrix I'll most likely need to pass m and n to my kernel.
If I also need to know the total number of points N = m*n, should I pass N as a parameter (and ...
1
vote
1answer
43 views
how do i improve the speed of the mysql query
The below query taking approx 2min.Is there any way to improve the speed of the query execution
SELECT SQL_CALC_FOUND_ROWS c.dentist_id,
c.pack_id,
sql1.vendor_no,
...
0
votes
1answer
11 views
How to reduce XNA game CPU usage while nothing worth computing is happening?
A fresh XNA game project application consumes quite some CPU percentage while its window is active. On my desktop PC it's about 30% of one core of a 2-core processor. When the window loses focus, the ...
0
votes
1answer
23 views
Re-drawing the canvas or moving it?
I need to draw a line that moves from left to right over the screen. Currently I'm just calling .clearRect() everytime, and draw it again, 1 pixel further. However, another possibility would be to ...
0
votes
1answer
18 views
How to find related pages without querying inside a loop?
I'm having an issue with a site I'm programming. Things are a bit slow on a site section where I have pages and child pages.
I've got a lot of mySQL queries specifically at this section, there are ...
0
votes
1answer
13 views
detect the need of ActiveRecord eager load
Is there any tool/automation which will identify the need of ActiveRecord eager load and warn the same.
Can any fix to ActiveRecord fix it?
40
votes
0answers
590 views
Live Binding with Automatic updates in XE3 (no need to call Notify() as in XE2)
I am currently using Delphi XE2, and heard about their new Live Binding with Automatic updates in XE3 (no need to call Notify() as in XE2).
in C# or in Delphi XE2 we have to implement ...
28
votes
0answers
369 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 ...
8
votes
0answers
446 views
three.js: Many meshes with the same geometry and material, can I change their colors?
I have a large number (~1000) of THREE.Mesh objects that have been constructed from the same THREE.Geometry and THREE.MeshPhongMaterial (which has a map).
I would like to tint (color) these objects ...
6
votes
0answers
360 views
Ejabberd performance issues
I try to stress test ejabberd with bots. Bots are sending messages to each other. When load reaches 30 MB/s it seems that something is limiting the traffic.
I disables all shapers and most of the ...
5
votes
0answers
405 views
Why ASP.NET MVC default Model Binder is slow? It's taking a long time to do its work
In a current project the client asked for the possibility of answering a questionnaire in two ways: using a Wizard (one question at a time) and Listing (all questions at once) in a single form. Both ...
5
votes
0answers
522 views
Resolving KineticJS performance issues in FireFox
Am I the only one having really bad experiences with KineticJS in Firefox? I have tested v12 and v14.1, and they both have issues.
Trying to draw as little as possible, barely helps, and sometimes ...
4
votes
0answers
104 views
Why does CUDA code run so much faster in NVIDIA Visual Profiler?
A piece of code that takes well over 1 minute on the command line was done in a matter of seconds in NVIDIA Visual Profiler (running the same .exe). So the natural question is why? Is there something ...
4
votes
0answers
93 views
JMeter, post ALL form data
I am trying to performance test a website's Edit functionality using JMeter.
However the step that I am trying to test posts back over 200 items in the form.
I obviously want all the items to be the ...
4
votes
0answers
153 views
Why is my Cassandra node stuck with MutationStage increasing?
I'm using Cassandra to store pictures. We are currently mass migrating pictures from an old system. Everything works great for a while, but eventually we'd get a TimedOutException when saving which I ...
4
votes
0answers
148 views
Configure Bullet Physics for speed
How to configure Bullet engine for speed, not for physics accuracy? For example, is it possible to increase friction, so that objects become stationary more quickly?
Currently, I am able to do only ...
4
votes
0answers
134 views
Need solution for objects and relationships storage
I need in solution for the storage objects and relationships between this objects with the best perfomance. I need to store the user object and the relations of friendship between this users.
I need ...
4
votes
0answers
165 views
SVN Performance Issues with IPV6
I'm using SlikSVN's 64-bit subversion server for source control. I noticed that a few applications were taking a really long time to perform simple actions with repositories the other day, such as ...
4
votes
0answers
374 views
Distributed local clustering coefficient algorithm (MapReduce/Hadoop)
I have implemented MapReduce paradigm based local clustering coefficient algorithm. However I have run into serious troubles for bigger datasets or specific datasets (high average degree of a node). I ...
4
votes
0answers
1k views
RestyGWT vs RequestFactory
I'm thinking on migrating my current service layer based on GWT-RPC to something else. It is about 10 service interfaces with 5 methods each, and involving about 20 different domain entities, so you ...
4
votes
0answers
139 views
How do I get an instruction trace on Mac OS X 10.5 PPC?
Apple used to ship a tool called amber as part of CHUD with Xcode 2.5, which would allow you to get an instruction trace for a process. You could then feed the instruction trace to simg5. The simg5 ...
4
votes
0answers
179 views
OpenAL initializing makes my iPhone game
I have a bad performance problem with OpenAL in my iPhone game. My game runs smooth with 60fps but when i'm initialize OpenAL
device = alcOpenDevice(NULL);
if(device) {
context = ...
4
votes
0answers
404 views
Tsung. contents_from_file attribute with variable value
I've got a problem using tsung:
I've got several files in one dir wich I have to send to the server. I
create file with list of this files (fullpath) and add an option to
tsung config:
<option ...
4
votes
0answers
219 views
What index would speed up my XQuery in X-Hive / Documentum xDB?
I have approx 2500 documents in my test database and searching the xpath /path/to/@attribute takes approximately 2.4 seconds. Doing distinct-values(/path/to/@attribute) takes 3.0 seconds.
I've been ...
3
votes
0answers
31 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 ...
3
votes
0answers
72 views
OpenGL core profile incredible slowdown on OS X
I added a new GL renderer to my engine, which uses the core profile. While it runs fine on Windows and/or nvidia cards, it is like 10 times slower on OS X (3 fps instead of 30). The weird thing is, ...
2
votes
0answers
190 views
glDrawElements with GL_LINES forces gleRunVertexSubmitARM? (or: why drawing wireframes is slow on iOS?)
while doing some tests for a small project for iPhone/iPad that I'm working on, I observed that there is a big CPU performance penalty in drawing wireframes using glDrawElements with GL_LINES.
This ...
1
vote
0answers
20 views
How do you make python script run faster?
I noticed a big difference when I was running a script on pythonanywhere.com. The times were like 7-8 times shorter than running the same script on my PC and i want to understand why. I have Ubuntu ...
1
vote
0answers
35 views
High Performance WPF Datagrid
My issue in a nutshell : we are currently using in our project the standard WPF dataGrid, which comes with WPF .NET4 and above. Unfortunately for us, the performances are horrible for the scale of ...
1
vote
0answers
37 views
C# load xlsx file performance bad
I have a question regarding Excel (Xlsx) files loading in C#. I have implemented Excel loading with NPOI 2.0 but the performance was quite bad (15 to 25 seconds loading time with 10000 rows and 60 ...
1
vote
0answers
32 views
Compare-Object Powershell performance and Operation VS Loop
I was looking at this question where the OP wanted to know how to compare items in two arrays without looping through each array.
The command given was:
$array3 = @(Compare-Object $array1 $array2 | ...
1
vote
0answers
78 views
WCF service spends most of the time in “Sleeping” and “Waiting for syncronization”
According to Ants Performance Profiler my WCF service spends most of in "Sleeping" and "Waiting for syncronization". As a result I have a bad performance (requests per second)
How can I detect ...
1
vote
0answers
280 views
How to speed up a LogParser application in ASP.NET
I've developed an ASP.NET application that receives input from the user which is basically an SQL query ran by LogParser. (This input is kept in the "sql1" string. It works, but works slowly. For a ...
0
votes
0answers
7 views
Windows Forms/SQL Database/Datagridview: Rapid search through large quantity of data
I have a MySQLCe database of double integers 0.00 to 1000.00 in intervals of .01 (so 100,000 rows). I'm using the Sterling Activex API. It's kind of obscure and difficult to explain, but basically all ...
0
votes
0answers
22 views
Javascript object group by day,month,year
I am working on application which I need to do grouping of different sets of javascript object and those will be based on month,day and year.
For day I am doing like below
var calculateByDay = ...
0
votes
0answers
31 views
Does using interface in android app hurts app performance
In one presentation deck of Reto Meier I read, his suggestion to prefer virtual methods over interface but there were no more explanation. Apart from the runtime overhead is there anything else which ...
0
votes
0answers
33 views
Does Rapidly Calling A Method With Local Variables Eat CPU/Memory?
Say I have a method that defines a few objects and variable and initializes them. Would a timer or similar that loops through the method every half second or so eat up memory with the objects and ...
0
votes
0answers
22 views
MySQL - Analyze Query
This is a following question regarding:
Original question
The scenario:
One query with FULL Text Search
One query with Like %something%
Over 11 thousand records Goal: - Analyse the explain of ...
0
votes
0answers
14 views
CPU intensive and slow XML parsing in Java 7 due to Xalan issue in SAX2DOM
We upgraded from Java 6 to Java 7 and suddenly see a significant performance issue in our application related to XML parsing. Almost all the time when I do the tread dump, I can see the following near ...
0
votes
0answers
9 views
JAVA Smart Card client authentication - slow “init keystore”
I'm developing an application that requires client authentication through smart-card.
The client performs a mutual SSL authentication using the smart-card.
There's an efficiency issue: the client ...
0
votes
0answers
18 views
MIPS count for throughput?
I was reading this question about FLOPS and I agree with all that, but then how should we measure the performance of a program that does not contain floats? Should we go for MIPS (million instructions ...
0
votes
0answers
21 views
How to improve the performance of video using frame buffer
Why is a framebuffer memory usually uncached and how can we improve the performance by using an uncached memory? I am trying to understand how the video performance is related to cached or uncached ...
0
votes
0answers
50 views
Reducing network roundtrips using Neo4j Java REST wrapper
Context
I'm running a Neo4j instance as a (remote) server. Periodically, I need to send a batch of new nodes to the database -- let's say about 5000 per batch, with 5-10 properties per node. I'm ...
