Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
7answers
789 views

Algorithm Speed Order of

Sometimes I get totally fooled trying to estimate an algorithm's speed with the O(x) notation, I mean, I can really point out when the order is O(n) or O(mxn), but for those that are O(lg(n)) or ...
5
votes
4answers
3k views

How should I estimate hardware requirements for SQL Server 2005 database?

We're being asked to spec out production database hardware for an ASP.NET web application that hasn't been built yet. The specs we need to determine are: Database CPU Database I/O Database RAM ...
4
votes
7answers
505 views

Can you estimate an application's performance before testing?

It's a tricky question I was asked the other day... We're working on a pretty complex telephony (SIP) application with mixed C++ and PHP code with MySQL databases and several open source components. ...
1
vote
1answer
48 views

SQL Server : Estimated Execution Plan

I am using SQL Server Execution plan for analysing the performance of the store proc. I have two results with and without the Index. In both these results the Estimated Cost shows the same ...
0
votes
1answer
168 views

ASP.Net number of servers estimation

Let's assume our average page weights P KBytes and we've got N visits per unit time (let's say, per hour). How could we estimate the number of servers needed to support this load with a reasonable ...