By tag: optimization
0
kicks
WebP - Advanced image optimization using ASP.NET MVC
Most modern web pages contain a lot of images. These images often make up the bulk of a web page request. According to the HTTPArchive, images make up over 50% of the average web page and if you are looking to optimize on the performance of your web page, the best place to start is often with the im...
0
kicks
Parallel and The C# Memory Model
Parallel programming can be tricky, both compiler and CPU's optimization can lead into a twilight zone's debugging.
0
kicks
Do modern compilers optimize the x * 2 operation to x << 1?
I was wondering wether the C++ compiler inside Visual Studio 2008 was optimizing it the way it would logically be. So I asked the question on Stackoverflow. It was among my first questions and was to see how the community would answer (yeah I'm lazy).
I was promptly answered by Rob Walker. He sho...
0
kicks
How the Garbage Collector works - Part 2
Now let’s go deeper to understand how the Garbage Collector (GC) is actually collecting the dead objects and how this may affect the performance.
0
kicks
How the Garbage Collector works - Part 1
The Garbage Collector (GC) can be considered the heart of the .NET Framework. It manages the allocation and release of memory for any .NET application. In order to create good .NET applications, we must know how the Garbage Collector (GC) works.
0
kicks
10 Tips to improve your LINQ TO SQL Application Performance
Sidar gives performance tips on developing linq 2 sql
0
kicks
Things you MUST dispose
When the .NET Framework instantiates an object, it allocates memory for that object on the managed heap. The object remains on the heap until it's no longer referenced by any active code, at which point the memory it's using is reclamed by the Garbage Collector (GC). Before the GC deallocates the me...
0
kicks
Boosting performance on aspx pages
Most of internet tutorials tells you to use Page Load event to bind your data to controls. What's happening when you have to rebind controls again because your data source is changed due to some event where you have to re bind controls.
0
kicks
How to: Optimize the memory usage with strings
System.String type is used in any .NET application. We have strings as: names, addresses, descriptions, error messages, warnings or even application settings. Each application has to create, compare or format string data. Considering the immutability and the fact that any object can be converted to ...
0
kicks
How to: Optimize the strings’ comparison
Due to my web research I found some useful tips about how to compare two strings making full use of performance in .NET Framework.
0
kicks
Optimization: Your worst enemy
Good article on why optimization can be bad, and what you can do about it.
0
kicks
Optimized access to Bitmaps
How to read and elaborate sequence of bitmaps without using .NET functions, saving tons of processor cycles.