.NET news » Performance Performance Rss Feed

< 1 2 3 4 5 6 7 8 9 10 11 >
download
ASP.NET 2.0 Performance Tuning Considerations
ASP.NET 2.0 has a lot of performance enhancements. In addition this article discusses on certain techniques which can improve the performance of applications.
4 Aug 2006, 06:14:36   Source: ASP.NET 2.0 Performance Tuning Considerations   Tags: ASP.NET Performance
Performance Console (PerfConsole)
The PerfConsole allows developers to analyze Visual Studio Performance Profiler's reports. It is a simple performance investigation tool which tries to adopt a debugger like experience to drilling into Visual Studio Performance Profiler generated data.
3 Aug 2006, 15:03:00   Source: Performance Console (PerfConsole)   Tags: Performance Software
StringBuilder vs. String / Fast String Operations with .NET 2.0
Comparision of String/StringBuilder functions. Efficient String handling.
25 Jul 2006, 18:31:00   Source: StringBuilder vs. String / Fast String Operations with...   Tags: Performance
EasyPack - A Pushbutton Batch JavaScript Error Checking, Compression and Obsfucation Tool
EasyPack enables syntax checking, validation, compression and obsfucation of JavaScript files with a single click
System.Diagnostics.Stopwatch - always remember to use Reset
Wrong
        System.Diagnostics.Stopwatch s = new System.Diagnostics.Stopwatch();

        s.Start();
        for (i = 0; i < count; i++) Test1();
        s.Stop();
        Console.WriteLine("Test1: {0}", s.ElapsedMilliseconds);

        s.Start();
        for (i = 0; i < count; i++) Test2();
        s.Stop();

        Console.WriteLine("Test2: {0}", s.ElapsedMilliseconds);
Right
        System.Diagnostics.Stopwatch s = new System.Diagnostics.Stopwatch();

        s.Start();
        for (i = 0; i < count; i++) Test1();
        s.Stop();
        Console.WriteLine("Test1: {0}", s.ElapsedMilliseconds);

        s.Reset();

        s.Start();
        for (i = 0; i < count; i++) Test2();
        s.Stop();

        Console.WriteLine("Test2: {0}", s.ElapsedMilliseconds);
Not that *cough* I would ever make this mistake or anything, but you know... it could happen to like, a friend, or something. Ya. My friend. :)
patterns & practices Guidance Explorer
What are the security and performance proven practices for .NET applications? You can use Guidance Explorer to find out. Guidance Explorer is a tool to help you find and use relevant patterns & practices guidance.
14 Jul 2006, 16:36:55   Source: patterns & practices Guidance Explorer   Tags: Software Security Performance
HTTP Compression - Quick and Dirty Solution
Use HTTP Compression on ASP.NET 2.0 pages
11 Jul 2006, 13:03:00   Source: HTTP Compression - Quick and Dirty Solution   Tags: ASP.NET Performance
ViewState Compression
How to compress the ViewState of ASP.NET pages and save bandwidth
10 Jul 2006, 05:42:00   Source: ViewState Compression   Tags: ASP.NET Performance
A General Fast Method Invoker
Method reflecting invoke is nice, but frequently do it can be too slow. This article describes an alternative method for dynamic method invoke.
27 Jun 2006, 21:49:00   Source: A General Fast Method Invoker   Tags: Performance
Advanced Basics: Monitor Your Apps with System.Diagnostics
The System.Diagnostics namespace provides classes for interacting with event logs, performance counters, and system processes, and can really help when you've got bugs. Find out how.
< 1 2 3 4 5 6 7 8 9 10 11 >