<?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/"
	xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: Caching Data for Windows Applications</title>
	<atom:link href="http://jachman.wordpress.com/2007/03/12/caching-data-for-windows-applications/feed/" rel="self" type="application/rss+xml" />
	<link>http://jachman.wordpress.com/2007/03/12/caching-data-for-windows-applications/</link>
	<description>.NET C#, Oracle, SQL Server and all other stuff that gives live a sense.</description>
	<lastBuildDate>Fri, 06 Nov 2009 11:33:37 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Alin</title>
		<link>http://jachman.wordpress.com/2007/03/12/caching-data-for-windows-applications/#comment-1582</link>
		<dc:creator>Alin</dc:creator>
		<pubDate>Mon, 12 Oct 2009 16:28:49 +0000</pubDate>
		<guid isPermaLink="false">http://jachman.wordpress.com/2007/03/12/caching-data-for-windows-applications/#comment-1582</guid>
		<description>Hi,

There is a problem. Expired items a not removed from Dictionary. So after a long time I memory are a lots of items that are expired.
So it is necesary a method to remove those items.</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>There is a problem. Expired items a not removed from Dictionary. So after a long time I memory are a lots of items that are expired.<br />
So it is necesary a method to remove those items.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joe</title>
		<link>http://jachman.wordpress.com/2007/03/12/caching-data-for-windows-applications/#comment-1380</link>
		<dc:creator>Joe</dc:creator>
		<pubDate>Tue, 03 Mar 2009 17:10:54 +0000</pubDate>
		<guid isPermaLink="false">http://jachman.wordpress.com/2007/03/12/caching-data-for-windows-applications/#comment-1380</guid>
		<description>Nice stuff.

Some changes I made was to add the indexed default property so I can use Cache[&quot;Key&quot;], if trying to insert null then remove the key (if it exists) and I replaced INFINITE with Timeout.Infinite (from System.Threading).

Thanks!</description>
		<content:encoded><![CDATA[<p>Nice stuff.</p>
<p>Some changes I made was to add the indexed default property so I can use Cache["Key"], if trying to insert null then remove the key (if it exists) and I replaced INFINITE with Timeout.Infinite (from System.Threading).</p>
<p>Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Eddmartinez</title>
		<link>http://jachman.wordpress.com/2007/03/12/caching-data-for-windows-applications/#comment-1374</link>
		<dc:creator>Eddmartinez</dc:creator>
		<pubDate>Wed, 19 Nov 2008 10:13:49 +0000</pubDate>
		<guid isPermaLink="false">http://jachman.wordpress.com/2007/03/12/caching-data-for-windows-applications/#comment-1374</guid>
		<description>Great Work Gerhard! Yes Microsoft preferred ASP.NET cache and it is very good in its performance but only in its single server environment. But now Microsoft also realized and starts working on distributed caching. Because distributed caching is scalable and highly reliable as compared to traditional caching.</description>
		<content:encoded><![CDATA[<p>Great Work Gerhard! Yes Microsoft preferred ASP.NET cache and it is very good in its performance but only in its single server environment. But now Microsoft also realized and starts working on distributed caching. Because distributed caching is scalable and highly reliable as compared to traditional caching.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: test</title>
		<link>http://jachman.wordpress.com/2007/03/12/caching-data-for-windows-applications/#comment-1355</link>
		<dc:creator>test</dc:creator>
		<pubDate>Thu, 07 Aug 2008 04:51:36 +0000</pubDate>
		<guid isPermaLink="false">http://jachman.wordpress.com/2007/03/12/caching-data-for-windows-applications/#comment-1355</guid>
		<description>INTRODUCTION
The System.Web.Caching.Cache object in the Microsoft .NET Framework 1.1 and in the Microsoft .NET Framework 1.0 is not intended for use outside Microsoft ASP.NET. The Cache object was designed and tested for use by ASP.NET to provide ASP.NET caching. If you try to use Cache objects in other types of applications, such as console applications or Windows Forms applications, the Cache objects may not work correctly.

Note The specific problem that is described in the &quot;More Information&quot; section does not occur in the Microsoft .NET Framework 2.0. Therefore, you can use the Cache object outside ASP.NET in the .NET Framework 2.0. However, we recommend that you consider using the Caching Application Block because it offers you more options for customization to meet application requirements.

MORE INFORMATION
You cannot create a System.Web.Caching.Cache object on an operating system that does not have ASP.NET installed. C</description>
		<content:encoded><![CDATA[<p>INTRODUCTION<br />
The System.Web.Caching.Cache object in the Microsoft .NET Framework 1.1 and in the Microsoft .NET Framework 1.0 is not intended for use outside Microsoft ASP.NET. The Cache object was designed and tested for use by ASP.NET to provide ASP.NET caching. If you try to use Cache objects in other types of applications, such as console applications or Windows Forms applications, the Cache objects may not work correctly.</p>
<p>Note The specific problem that is described in the &#8220;More Information&#8221; section does not occur in the Microsoft .NET Framework 2.0. Therefore, you can use the Cache object outside ASP.NET in the .NET Framework 2.0. However, we recommend that you consider using the Caching Application Block because it offers you more options for customization to meet application requirements.</p>
<p>MORE INFORMATION<br />
You cannot create a System.Web.Caching.Cache object on an operating system that does not have ASP.NET installed. C</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sandip</title>
		<link>http://jachman.wordpress.com/2007/03/12/caching-data-for-windows-applications/#comment-1352</link>
		<dc:creator>sandip</dc:creator>
		<pubDate>Tue, 08 Jul 2008 09:33:44 +0000</pubDate>
		<guid isPermaLink="false">http://jachman.wordpress.com/2007/03/12/caching-data-for-windows-applications/#comment-1352</guid>
		<description>Nice!!!</description>
		<content:encoded><![CDATA[<p>Nice!!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gerhard</title>
		<link>http://jachman.wordpress.com/2007/03/12/caching-data-for-windows-applications/#comment-1350</link>
		<dc:creator>Gerhard</dc:creator>
		<pubDate>Fri, 27 Jun 2008 19:35:58 +0000</pubDate>
		<guid isPermaLink="false">http://jachman.wordpress.com/2007/03/12/caching-data-for-windows-applications/#comment-1350</guid>
		<description>Kumar, download the example and you&#039;ll see.</description>
		<content:encoded><![CDATA[<p>Kumar, download the example and you&#8217;ll see.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kumar</title>
		<link>http://jachman.wordpress.com/2007/03/12/caching-data-for-windows-applications/#comment-1349</link>
		<dc:creator>Kumar</dc:creator>
		<pubDate>Fri, 27 Jun 2008 16:19:10 +0000</pubDate>
		<guid isPermaLink="false">http://jachman.wordpress.com/2007/03/12/caching-data-for-windows-applications/#comment-1349</guid>
		<description>You wrote a cache class? I see you initializing the Cache object ;) Are you saying you wrote [i]that[/i] class?</description>
		<content:encoded><![CDATA[<p>You wrote a cache class? I see you initializing the Cache object <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  Are you saying you wrote [i]that[/i] class?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ID-10-T</title>
		<link>http://jachman.wordpress.com/2007/03/12/caching-data-for-windows-applications/#comment-1214</link>
		<dc:creator>ID-10-T</dc:creator>
		<pubDate>Tue, 20 Nov 2007 21:54:38 +0000</pubDate>
		<guid isPermaLink="false">http://jachman.wordpress.com/2007/03/12/caching-data-for-windows-applications/#comment-1214</guid>
		<description>Ah, you CAN use System.Web.Caching.Cache outside of ASP.NET (e.g., from a Winforms app or a console app). Get your facts straight.</description>
		<content:encoded><![CDATA[<p>Ah, you CAN use System.Web.Caching.Cache outside of ASP.NET (e.g., from a Winforms app or a console app). Get your facts straight.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Felix Prangishvili</title>
		<link>http://jachman.wordpress.com/2007/03/12/caching-data-for-windows-applications/#comment-620</link>
		<dc:creator>Felix Prangishvili</dc:creator>
		<pubDate>Mon, 16 Jul 2007 17:49:19 +0000</pubDate>
		<guid isPermaLink="false">http://jachman.wordpress.com/2007/03/12/caching-data-for-windows-applications/#comment-620</guid>
		<description>Good clean code. Wanted to write it myself recently but now don&#039;t see why I should. Thanks.
The only thing though is that it would be nice to have a method which would compact the cache either explicitly (i.e. through a direct call to the method) or on a scheduled basis at predetermined intervals (with the interval settings passed in the constructor, for instance). Also, a property enabling/disabling the autocompacting would be feasible, I guess. But again, great job, thanks a lot!</description>
		<content:encoded><![CDATA[<p>Good clean code. Wanted to write it myself recently but now don&#8217;t see why I should. Thanks.<br />
The only thing though is that it would be nice to have a method which would compact the cache either explicitly (i.e. through a direct call to the method) or on a scheduled basis at predetermined intervals (with the interval settings passed in the constructor, for instance). Also, a property enabling/disabling the autocompacting would be feasible, I guess. But again, great job, thanks a lot!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
