<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: GC Tips and Memory Leaks</title>
	<atom:link href="http://chaoticjava.com/posts/gc-tips-and-memory-leaks/feed/" rel="self" type="application/rss+xml" />
	<link>http://chaoticjava.com/posts/gc-tips-and-memory-leaks/</link>
	<description>The internet, design patterns, frameworks and Java</description>
	<lastBuildDate>Sat, 05 Nov 2011 18:39:00 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: Javin @ eclipse remote debugging</title>
		<link>http://chaoticjava.com/posts/gc-tips-and-memory-leaks/comment-page-1/#comment-126176</link>
		<dc:creator>Javin @ eclipse remote debugging</dc:creator>
		<pubDate>Fri, 15 Apr 2011 13:11:34 +0000</pubDate>
		<guid isPermaLink="false">http://chaoticjava.com/posts/gc-tips-and-memory-leaks/#comment-126176</guid>
		<description>I am not sure about heap fragmentation though , there is opinion that frequent java garbage collection causes heap fragmentation but java is intelligent enough to compact heap and I believe this behavior is available in latest JRE..

Javin
&lt;a href=&quot;http://javarevisited.blogspot.com/2011/04/garbage-collection-in-java.html&quot; rel=&quot;nofollow&quot;&gt;How Garbage collection works in Java &lt;/a&gt;</description>
		<content:encoded><![CDATA[<p>I am not sure about heap fragmentation though , there is opinion that frequent java garbage collection causes heap fragmentation but java is intelligent enough to compact heap and I believe this behavior is available in latest JRE..</p>
<p>Javin<br />
<a href="http://javarevisited.blogspot.com/2011/04/garbage-collection-in-java.html" rel="nofollow">How Garbage collection works in Java </a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Avah</title>
		<link>http://chaoticjava.com/posts/gc-tips-and-memory-leaks/comment-page-1/#comment-98245</link>
		<dc:creator>Avah</dc:creator>
		<pubDate>Sat, 11 Dec 2010 21:31:59 +0000</pubDate>
		<guid isPermaLink="false">http://chaoticjava.com/posts/gc-tips-and-memory-leaks/#comment-98245</guid>
		<description>Hello!! i need to learn java, where can i start??</description>
		<content:encoded><![CDATA[<p>Hello!! i need to learn java, where can i start??</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tweaking the producer-consumer model</title>
		<link>http://chaoticjava.com/posts/gc-tips-and-memory-leaks/comment-page-1/#comment-91979</link>
		<dc:creator>Tweaking the producer-consumer model</dc:creator>
		<pubDate>Fri, 29 Oct 2010 21:54:03 +0000</pubDate>
		<guid isPermaLink="false">http://chaoticjava.com/posts/gc-tips-and-memory-leaks/#comment-91979</guid>
		<description>[...] avoid using the finalize method and how to do so efficiently. If you haven’t, I recommend you do so now. It could make the rest of the post much easier to understand. So, knowing we want to use the GC to [...]</description>
		<content:encoded><![CDATA[<p>[...] avoid using the finalize method and how to do so efficiently. If you haven’t, I recommend you do so now. It could make the rest of the post much easier to understand. So, knowing we want to use the GC to [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: KR</title>
		<link>http://chaoticjava.com/posts/gc-tips-and-memory-leaks/comment-page-1/#comment-76038</link>
		<dc:creator>KR</dc:creator>
		<pubDate>Wed, 31 Mar 2010 20:36:33 +0000</pubDate>
		<guid isPermaLink="false">http://chaoticjava.com/posts/gc-tips-and-memory-leaks/#comment-76038</guid>
		<description>How does it affect the performance if I unnecessarily override finalize method in all my classes? Does all the objects are put into a queue which are marked as finalizable and it takes lot of memory by allocating space in the queue and hence the affecting the performance?  please correct me if my understanding is Wrong.</description>
		<content:encoded><![CDATA[<p>How does it affect the performance if I unnecessarily override finalize method in all my classes? Does all the objects are put into a queue which are marked as finalizable and it takes lot of memory by allocating space in the queue and hence the affecting the performance?  please correct me if my understanding is Wrong.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Simple solution to resource collection</title>
		<link>http://chaoticjava.com/posts/gc-tips-and-memory-leaks/comment-page-1/#comment-59298</link>
		<dc:creator>Simple solution to resource collection</dc:creator>
		<pubDate>Mon, 03 Aug 2009 21:26:08 +0000</pubDate>
		<guid isPermaLink="false">http://chaoticjava.com/posts/gc-tips-and-memory-leaks/#comment-59298</guid>
		<description>[...] a task the GC doesn&#8217;t do. That&#8217;s because the GC does something else for us called object finalization, where resources usually clean themselves [...]</description>
		<content:encoded><![CDATA[<p>[...] a task the GC doesn&#8217;t do. That&#8217;s because the GC does something else for us called object finalization, where resources usually clean themselves [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Java Logger Memory Leaks</title>
		<link>http://chaoticjava.com/posts/gc-tips-and-memory-leaks/comment-page-1/#comment-57006</link>
		<dc:creator>Java Logger Memory Leaks</dc:creator>
		<pubDate>Sun, 05 Jul 2009 18:14:41 +0000</pubDate>
		<guid isPermaLink="false">http://chaoticjava.com/posts/gc-tips-and-memory-leaks/#comment-57006</guid>
		<description>[...] influence Since it&#8217;s a &#8220;heavy&#8221; back-end system, the GC could affect its performance if code was written in an non-optimal way. I decided to take a look at how hard it was working, [...]</description>
		<content:encoded><![CDATA[<p>[...] influence Since it&#8217;s a &#8220;heavy&#8221; back-end system, the GC could affect its performance if code was written in an non-optimal way. I decided to take a look at how hard it was working, [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Garbage collectors &#171; Java Village</title>
		<link>http://chaoticjava.com/posts/gc-tips-and-memory-leaks/comment-page-1/#comment-31531</link>
		<dc:creator>Garbage collectors &#171; Java Village</dc:creator>
		<pubDate>Fri, 16 May 2008 20:53:47 +0000</pubDate>
		<guid isPermaLink="false">http://chaoticjava.com/posts/gc-tips-and-memory-leaks/#comment-31531</guid>
		<description>[...] une petite intro, on accÃ©lÃ¨re le rythme avec un article un peu plus ardu, pour finir sur un best practice. Pour le fun, vous pouvez terminer sur celui [...]</description>
		<content:encoded><![CDATA[<p>[...] une petite intro, on accÃ©lÃ¨re le rythme avec un article un peu plus ardu, pour finir sur un best practice. Pour le fun, vous pouvez terminer sur celui [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Garbage Collection - The comic panel</title>
		<link>http://chaoticjava.com/posts/gc-tips-and-memory-leaks/comment-page-1/#comment-31260</link>
		<dc:creator>Garbage Collection - The comic panel</dc:creator>
		<pubDate>Sun, 11 May 2008 19:48:48 +0000</pubDate>
		<guid isPermaLink="false">http://chaoticjava.com/posts/gc-tips-and-memory-leaks/#comment-31260</guid>
		<description>[...] Garbage Collection set of posts (Generations, Parallel and Concurrent, Tips and Memory Leaks) are ones that I am personally very proud of. First, they were very interesting to write, as the [...]</description>
		<content:encoded><![CDATA[<p>[...] Garbage Collection set of posts (Generations, Parallel and Concurrent, Tips and Memory Leaks) are ones that I am personally very proud of. First, they were very interesting to write, as the [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Avah</title>
		<link>http://chaoticjava.com/posts/gc-tips-and-memory-leaks/comment-page-1/#comment-23352</link>
		<dc:creator>Avah</dc:creator>
		<pubDate>Mon, 04 Feb 2008 22:03:11 +0000</pubDate>
		<guid isPermaLink="false">http://chaoticjava.com/posts/gc-tips-and-memory-leaks/#comment-23352</guid>
		<description>Kris: I couldn&#039;t find &lt;i&gt;that&lt;/i&gt; out, but I can refer you to a great document discussing all the knobs you can use within the GC. The document &lt;a href=&quot;http://java.sun.com/javase/technologies/hotspot/gc/gc_tuning_6.html&quot; rel=&quot;nofollow&quot;&gt;is here&lt;/a&gt;, and generally the subject is called either &quot;GC tuning&quot; or &quot;GC ergonomics&quot;.</description>
		<content:encoded><![CDATA[<p>Kris: I couldn&#8217;t find <i>that</i> out, but I can refer you to a great document discussing all the knobs you can use within the GC. The document <a href="http://java.sun.com/javase/technologies/hotspot/gc/gc_tuning_6.html" rel="nofollow">is here</a>, and generally the subject is called either &#8220;GC tuning&#8221; or &#8220;GC ergonomics&#8221;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kris G.</title>
		<link>http://chaoticjava.com/posts/gc-tips-and-memory-leaks/comment-page-1/#comment-23339</link>
		<dc:creator>Kris G.</dc:creator>
		<pubDate>Mon, 04 Feb 2008 18:53:49 +0000</pubDate>
		<guid isPermaLink="false">http://chaoticjava.com/posts/gc-tips-and-memory-leaks/#comment-23339</guid>
		<description>Right, so which objects are large and which are considered small? ;)</description>
		<content:encoded><![CDATA[<p>Right, so which objects are large and which are considered small? <img src='http://chaoticjava.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
</channel>
</rss>

