Benchmark Testing
Home :: ASP.NET :: C# :: Benchmark Testing
One of the final jobs when creating an app is performance tuning of your code. The
best way to do this is to run code inside a loop and measure how long it takes to
execute X number of times.
Here's the code to do just that...
What gems of wisdom did I discover to help save you some time?
- Your results will always suprise you!
- Hitting the database is the major overhead. Don't worry about simple functions. My
results were achieved on a box where IIS and SQL both run. Local network latency
will increase data access times.
The rest of this page is hidden, you must be a member to view itTo become a member and get immediate access to the course please join here Free!
Next >> Parameterized Query Class
|