<?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: More Configuring NHibernate Caches</title>
	<atom:link href="http://blog.symbiotic-development.com/2008/02/27/more-configuring-nhibernate-caches/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.symbiotic-development.com/2008/02/27/more-configuring-nhibernate-caches/</link>
	<description>Evolving Together</description>
	<lastBuildDate>Thu, 20 Aug 2009 01:56:54 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Fabio Maulo</title>
		<link>http://blog.symbiotic-development.com/2008/02/27/more-configuring-nhibernate-caches/comment-page-1/#comment-173</link>
		<dc:creator>Fabio Maulo</dc:creator>
		<pubDate>Sat, 18 Jul 2009 12:16:46 +0000</pubDate>
		<guid isPermaLink="false">http://blog.symbiotic-development.com/2008/02/27/more-configuring-nhibernate-caches/#comment-173</guid>
		<description>The strongly typed version of the cache configuration is available here
http://fabiomaulo.blogspot.com/2009/07/nhibernate-configuration-cache.html</description>
		<content:encoded><![CDATA[<p>The strongly typed version of the cache configuration is available here<br />
<a href="http://fabiomaulo.blogspot.com/2009/07/nhibernate-configuration-cache.html" rel="nofollow">http://fabiomaulo.blogspot.com/2009/07/nhibernate-configuration-cache.html</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Al&#8217;s Blog &#187; Blog Archive &#187; NHibernate and NOCOUNT</title>
		<link>http://blog.symbiotic-development.com/2008/02/27/more-configuring-nhibernate-caches/comment-page-1/#comment-108</link>
		<dc:creator>Al&#8217;s Blog &#187; Blog Archive &#187; NHibernate and NOCOUNT</dc:creator>
		<pubDate>Wed, 16 Apr 2008 10:12:41 +0000</pubDate>
		<guid isPermaLink="false">http://blog.symbiotic-development.com/2008/02/27/more-configuring-nhibernate-caches/#comment-108</guid>
		<description>[...] Doing this prevents NHibernate using the second-level cache so better than doing the above is to write your own implementation of ConnectionProvider and wire [...]</description>
		<content:encoded><![CDATA[<div style="padding: 1em; color: blue;">
<p>[...] Doing this prevents NHibernate using the second-level cache so better than doing the above is to write your own implementation of ConnectionProvider and wire [...]</p>
</div>
]]></content:encoded>
	</item>
	<item>
		<title>By: Symon Rottem</title>
		<link>http://blog.symbiotic-development.com/2008/02/27/more-configuring-nhibernate-caches/comment-page-1/#comment-24</link>
		<dc:creator>Symon Rottem</dc:creator>
		<pubDate>Tue, 04 Mar 2008 17:10:07 +0000</pubDate>
		<guid isPermaLink="false">http://blog.symbiotic-development.com/2008/02/27/more-configuring-nhibernate-caches/#comment-24</guid>
		<description>@Derek
Well spotted - fixed.  That&#039;s what you get when you roll these things by hand... :)

@slawkg
The class-cache is for caching a specific entity while the collection-cache is for caching the list of entities in a collection.  The Roles collection of the User entity contains a list of Role entities.  The collection-cache causes the ids of the Role entities in that collection (for that User) to be cached so the database doesn&#039;t have to be hit again to get the information.</description>
		<content:encoded><![CDATA[<p>@Derek<br />
Well spotted &#8211; fixed.  That&#8217;s what you get when you roll these things by hand&#8230; :)</p>
<p>@slawkg<br />
The class-cache is for caching a specific entity while the collection-cache is for caching the list of entities in a collection.  The Roles collection of the User entity contains a list of Role entities.  The collection-cache causes the ids of the Role entities in that collection (for that User) to be cached so the database doesn&#8217;t have to be hit again to get the information.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Derek Fowler</title>
		<link>http://blog.symbiotic-development.com/2008/02/27/more-configuring-nhibernate-caches/comment-page-1/#comment-23</link>
		<dc:creator>Derek Fowler</dc:creator>
		<pubDate>Tue, 04 Mar 2008 15:59:34 +0000</pubDate>
		<guid isPermaLink="false">http://blog.symbiotic-development.com/2008/02/27/more-configuring-nhibernate-caches/#comment-23</guid>
		<description>Very helpful post Symon, thanks. 

Noticed two small errors in the first configuration example; you need a session-factory element wrapping all the elements within the hibernate-configuration element and the closing hibernate-configuration tag is wrong.</description>
		<content:encoded><![CDATA[<p>Very helpful post Symon, thanks. </p>
<p>Noticed two small errors in the first configuration example; you need a session-factory element wrapping all the elements within the hibernate-configuration element and the closing hibernate-configuration tag is wrong.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: slawekg</title>
		<link>http://blog.symbiotic-development.com/2008/02/27/more-configuring-nhibernate-caches/comment-page-1/#comment-22</link>
		<dc:creator>slawekg</dc:creator>
		<pubDate>Tue, 04 Mar 2008 13:33:25 +0000</pubDate>
		<guid isPermaLink="false">http://blog.symbiotic-development.com/2008/02/27/more-configuring-nhibernate-caches/#comment-22</guid>
		<description>Ok, thx again for nice explanation.
One thing still bothers me:
what&#039;s the difference between class-cache and collection-cache ? Is it just one row vs many ?</description>
		<content:encoded><![CDATA[<p>Ok, thx again for nice explanation.<br />
One thing still bothers me:<br />
what&#8217;s the difference between class-cache and collection-cache ? Is it just one row vs many ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: slawekg</title>
		<link>http://blog.symbiotic-development.com/2008/02/27/more-configuring-nhibernate-caches/comment-page-1/#comment-20</link>
		<dc:creator>slawekg</dc:creator>
		<pubDate>Tue, 04 Mar 2008 13:09:57 +0000</pubDate>
		<guid isPermaLink="false">http://blog.symbiotic-development.com/2008/02/27/more-configuring-nhibernate-caches/#comment-20</guid>
		<description>Thank you very much!
I&#039;m digging through it...</description>
		<content:encoded><![CDATA[<p>Thank you very much!<br />
I&#8217;m digging through it&#8230;</p>
]]></content:encoded>
	</item>
</channel>
</rss>
