Tagged Questions

1
vote
3answers
28 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 …
0
votes
1answer
79 views

Performance optimisation - Postgres

I have been tasked with improving the performance of a slow running process which updates some data in a PostGres 8.3 database (running on Solaris, updates are driven by Perl 5.8 s …
0
votes
1answer
141 views

How to make Haskell use another list depending on the previous answer in Haskell

Hi I am doing project euler question 63 where I must find the amount of numbers that exist where: x^(n) == y Where n is the length of y. It soon emerges that the results for th …
7
votes
7answers
304 views

JavaScript - Are loops really faster in reverse…?

I've heard this quite a few times. Are JavaScript loops really faster when counting backward? If so, why? I've seen a few test suite examples showing that reversed loops are quicke …
1
vote
2answers
25 views

How do I work out the cost benefit of optimisation?

I want to figure out how much money I'd save if I optimise some part of my web app. If I save 100 cpu milliseconds over 50K calls to the app, how much electricity is that not usin …
0
votes
3answers
158 views

UIImage Performance and Optimisation with UITableViews

Hi there, I'm using several images to style UITableViewCells and I want to make sure I'm doing things correctly, firstly to ensure good memory management, and secondly to make sur …
0
votes
1answer
69 views

Optimizing IIS 6.0 performance on Windows Server 2003 Operating System

. Hi, We have built an ASP.NET application (with C#.net language) and hosted on IIS 6.0 on Windows Server 2003 Operating System. Now we need to optimize the IIS performance s …
0
votes
5answers
161 views

Time complexity of the program

#include< stdio.h> #include< time.h> int main() { clock_t start; double d; long int n,i,j; scanf("%ld",&n); n=100000; j=2; star …