Sign In
Chris Lyon's WebLog
Or How I Learned To Stop Worrying And Love The GC
Translate This Page
Translate this page
Powered by
Microsoft® Translator
Options
Email Blog Author
RSS for posts
Atom
RSS for comments
OK
Search
Advanced search options...
Search In:
Everything
Blogs
Forums
People
Groups
Places
Pages
Date range:
All Time
Last Year
Last 6 Months
Last 3 Months
Last Month
Last Week
Last Two Days
Tags
Blog
Dispose
GC
GCHandles
Misc
Orcas
Server GC
WeakReferences
Archive
Archives
March 2007
(4)
August 2006
(1)
May 2006
(1)
April 2006
(2)
April 2005
(1)
March 2005
(2)
February 2005
(1)
December 2004
(1)
September 2004
(8)
September, 2004
MSDN Blogs
>
Chris Lyon's WebLog
>
September, 2004
Posts
Subscribe via RSS
Sort by:
Most Recent
|
Most Views
|
Most Comments
Excerpt View
|
Full Post View
Chris Lyon's WebLog
Part 2 in Maoni's Using GC Efficiently
Posted
over 8 years ago
by
clyon
0
Comments
Maoni posted Part 2 to Using the GC Efficiently. A very in-depth article about Server, Workstation and Concurrent GC. Check it out.
Chris Lyon's WebLog
Dispose Dos and Don'ts
Posted
over 8 years ago
by
clyon
19
Comments
Due to the positive response on my previous entry on Dispose, I thought I'd write another, this time on what one should and shouldn't do with a Dispose method. Dispose should contain code to release any unmanaged resources associated with the object's...
Chris Lyon's WebLog
Demystifying Dispose
Posted
over 8 years ago
by
clyon
36
Comments
One commonly misunderstood feature is the relationship between disposable objects (Objects that implement the IDisposable interface) and the GC. I know there are a lot of online resources about patterns and best practices but there is still a lot of confusion...
Chris Lyon's WebLog
GCHandles, Boxing and Heap Corruption
Posted
over 8 years ago
by
clyon
10
Comments
A GCHandle is a struct used to hold onto a managed object to be used by unmanaged code. With a GCHandle you can (among other things): Prevent an object from being garbage collected if unmanaged code has the only live reference to it Pin an object in memory...
Chris Lyon's WebLog
A Few Good GC Links
Posted
over 8 years ago
by
clyon
7
Comments
I keep a GC folder in my Favorites full of links to articles and blog posts about the .NET GC. I thought it would be a good idea to consolidate them all into one blog post, for handy reference. These are the articles I most often post as answers to questions...
Chris Lyon's WebLog
Server GC Misconceptions
Posted
over 8 years ago
by
clyon
7
Comments
One of the most common “bugs” I read about on the Microsoft public newsgoups is the fact that the runtime does not automatically choose Server GC mode on a multi-proc machine, or server OS. If the server OS is running on a single-proc machine then the...
Chris Lyon's WebLog
Server, Workstation and Concurrent GC
Posted
over 8 years ago
by
clyon
29
Comments
One common question I see asked is the differences between server and workstation GC, and how Concurrent GC fits in. Server GC is only available on multi-proc machines. It creates one GC heap (and thus one GC thread) for each processor, which are collected...
Chris Lyon's WebLog
A New GC Blog
Posted
over 8 years ago
by
clyon
6
Comments
Hi! My name is Chris Lyon, and I'm a tester for the .NET Garbage Collector. The GC is one of the least-understood components of the CLR, and I hope to try to help our customers better understand it. Topics I hope to cover: General overview of how the...
Page 1 of 1 (8 items)