0
votes
2answers
22 views
Tips for optimizing sql commands worrying about legacy
The concern with the legacy of the sql statements is a constant in my head. Especially when SCRUM is used, where the code has no owner, that is, all must be able to repair and main …
0
votes
5answers
27 views
Optimize simple update on table
Hi All,
I am running following query in a stored proceudre and it is taking 30 milliseconds to execute. Can anyone help me out to optimize this query:
Table Definition is:
Crea …
8
votes
21answers
412 views
Java HashMap performance optimization / alternative
I want to create a large HashMap but the put() performance is not good enough. Any ideas?
Other data structure suggestions are welcome but I need the lookup feature of a Java Map: …
0
votes
7answers
65 views
Should I read file in separate thread in this case ?
Hi,
I am writing an application for embedded linux where 5% of processor time is going in reading a file and 95% on processing it. Can I get some performance improvement if I read …
0
votes
2answers
114 views
Representing game states in Tic Tac Toe
The goal of the assignment that I'm currently working on for my Data Structures class is to create a of Quantum Tic Tac Toe with an AI that plays to win.
Currently, I'm having a …
1
vote
3answers
91 views
Algorithm Implementation to Improve
I believe that out there we have algorithms implementations (e.g. a c++ implementation of a particular sorting algorithm) which might not be as efficient as they could be.
I would …
2
votes
3answers
59 views
Count from a table, but stop counting at a certain number
Is there a way in MySQL to COUNT(*) from a table where if the number is greater than x, it will stop counting there? Basically, I only want to know if the number of records returne …
0
votes
3answers
66 views
How can I make this repetitious jQuery less so?
I have 4 blocks of jQuery that look like this:
$('#aSplashBtn1').click(function(){
$('#divSliderContent div').hide();
$('#divSplash1').fadeIn('slow');
return false;
});
$('# …
1
vote
3answers
23 views
Optimise aggregation query
I'm looking for a way to optimise the following:
SELECT
(SELECT SUM(amount) FROM Txn_Log WHERE gid=@gid AND txnType IN (3, 20)) AS pendingAmount,
(SELECT COUNT(1) FROM Tx …
1
vote
2answers
40 views
Convenient way to use LIKE case sensivity in sqlite
As I see LIKE operator can optimize query if I switch PRAGMA case_sensitive_like=ON. I measured, it really worked, queries "LIKE someth%" becomes ten times faster on a compartively …
1
vote
2answers
47 views
Solving for optimal alignment of 3d polygonal mesh
I'm trying to implement a geometry templating engine. One of the parts is taking a prototypical polygonal mesh and aligning an instantiation with some points in the larger object. …
0
votes
2answers
46 views
Is it a way to know whether Index was used for a particular sql query
Sometimes one when creating SQL queries one assumes that one of the Index should be used by the engine when getting the data. But not always. If some of the necessities are absent …
3
votes
4answers
114 views
How do modern optimizing compilers determine when to optimize?
How do modern optimizing compilers determine when to apply certain optimizations such as loop unrolling and code inlining?
Since both of these affect caching, naively inlining fun …
2
votes
2answers
50 views
gcc -fPIC seems to muck with optimization flags
Following along from this question: how-do-i-check-if-gcc-is-performing-tail-recursion-optimization, I noticed that using gcc with -fPIC seems to destroy this optimization. I am cr …
1
vote
2answers
95 views
Optimizing the creation of objects inside loops
Which of the following would be more optimal on a Java 6 HotSpot VM?
final Map<Foo,Bar> map = new HashMap<Foo,Bar>(someNotSoLargeNumber);
for (int i = 0; i < so …
