Stories recently tagged with 'Optimization'

IIS SEO Toolkit(himabinduvejella.blogspot.com)

submitted by hima_.nethima_.net(440) 2 years, 5 months ago

A Story and features on IIS tool kit read more...

add a comment |category: |Views: 8

tags: another

Do modern compilers optimize the x * 2 operation to x << 1?(blog.decayingcode.com)

submitted by arch4ngelarch4ngel(585) 3 years, 3 months ago

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 showed me what the compiler outputted. read more...

add a comment |category: |Views: 8

tags: another

How the Garbage Collector works - Part 2(dotnetfacts.blogspot.com)

submitted by eugenciutaeugenciuta(715) 4 years ago

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. read more...

1 comment |category: |Views: 9

tags: another

How the Garbage Collector works - Part 1(dotnetfacts.blogspot.com)

submitted by eugenciutaeugenciuta(715) 4 years ago

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. read more...

add a comment |category: |Views: 14

tags: another

10 Tips to improve your LINQ TO SQL Application Performance(sidarok.com)

submitted by sidaroksidarok(1715) 4 years ago

Sidar gives performance tips on developing linq 2 sql read more...

add a comment |category: |Views: 207

tags: another

Boosting performance on aspx pages(aspnetfix.blogspot.com)

submitted by allianz77allianz77(80) 4 years, 1 month ago

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. read more...

add a comment |category: |Views: 16

tags: another

Things you MUST dispose(dotnetfacts.blogspot.com)

submitted by eugenciutaeugenciuta(715) 4 years, 1 month ago

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 memory, the framework calls the object's Finalize() method, but developers are responsible for calling the Dispose() method. read more...

add a comment |category: |Views: 22

tags: another

How to: Optimize the memory usage with strings(dotnetfacts.blogspot.com)

submitted by eugenciutaeugenciuta(715) 4 years, 1 month ago

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 a string, all the available memory can be swallowed by a huge amount of unwanted string duplicates or unclaimed string objects. Now let's see how a string object should be handled to preserve memory. read more...

add a comment |category: |Views: 56

tags: another

How to: Optimize the strings’ comparison(dotnetfacts.blogspot.com)

submitted by eugenciutaeugenciuta(715) 4 years, 1 month ago

Due to my web research I found some useful tips about how to compare two strings making full use of performance in .NET Framework. read more...

add a comment |category: |Views: 10

tags: another

Optimization: Your worst enemy(flounder.com)

submitted by edburdoedburdo(1350) 4 years, 9 months ago

Good article on why optimization can be bad, and what you can do about it. read more...

add a comment |category: |Views: 11

tags: another

SQL Optimization Tips(dotnetguts.blogspot.com)

submitted by vermdivyavermdivya(365) 4 years, 9 months ago

Tips and Tricks which should be used while dealing with SQL read more...

add a comment |category: |Views: 19

tags: another

Optimized access to Bitmaps(coders4fun.com)

submitted by DzamirDzamir(245) 5 years ago

How to read and elaborate sequence of bitmaps without using .NET functions, saving tons of processor cycles. read more...

1 comment |category: |Views: 10

tags: another

Optimize it!(ajdotnet.wordpress.com)

submitted by ajdotnetajdotnet(2940) 5 years, 3 months ago

How to achive good performance read more...

add a comment |category: |Views: 7

tags: another