<?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:georss="http://www.georss.org/georss"
	xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#"
	
	>
<channel>
	<title>
	Comments on: How to avoid the dog-pile effect on your Rails app	</title>
	<atom:link href="/2009/09/how-to-avoid-dog-pile-effect-rails-app/feed/" rel="self" type="application/rss+xml" />
	<link>/2009/09/how-to-avoid-dog-pile-effect-rails-app/</link>
	<description>Plataformatec&#039;s place to talk about Ruby, Ruby on Rails, Elixir, and software engineering</description>
	<lastBuildDate>Wed, 14 Oct 2009 12:49:11 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.4.2</generator>
	<item>
		<title>
		By: José Valim		</title>
		<link>/2009/09/how-to-avoid-dog-pile-effect-rails-app/comment-page-1/#comment-287</link>

		<dc:creator><![CDATA[José Valim]]></dc:creator>
		<pubDate>Wed, 14 Oct 2009 12:49:11 +0000</pubDate>
		<guid isPermaLink="false">/?p=246#comment-287</guid>

					<description><![CDATA[@Thomas, for Rails&#039; auto load to work, you have to use all the namespaces in your class, so you have to put it under: app/lib/active_support/cache/smart_mem_cache_store.rb.

If you want to have it hanging at app/lib/smart_mem_cache_store.rb, you can require the file manually, instead of relying on Rails autoload.]]></description>
			<content:encoded><![CDATA[<p>@Thomas, for Rails&#8217; auto load to work, you have to use all the namespaces in your class, so you have to put it under: app/lib/active_support/cache/smart_mem_cache_store.rb.</p>
<p>If you want to have it hanging at app/lib/smart_mem_cache_store.rb, you can require the file manually, instead of relying on Rails autoload.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: José Valim		</title>
		<link>/2009/09/how-to-avoid-dog-pile-effect-rails-app/comment-page-1/#comment-825</link>

		<dc:creator><![CDATA[José Valim]]></dc:creator>
		<pubDate>Wed, 14 Oct 2009 12:49:00 +0000</pubDate>
		<guid isPermaLink="false">/?p=246#comment-825</guid>

					<description><![CDATA[@Thomas, for Rails&#039; auto load to work, you have to use all the namespaces in your class, so you have to put it under: app/lib/active_support/cache/smart_mem_cache_store.rb.

If you want to have it hanging at app/lib/smart_mem_cache_store.rb, you can require the file manually, instead of relying on Rails autoload.]]></description>
			<content:encoded><![CDATA[<p>@Thomas, for Rails&#8217; auto load to work, you have to use all the namespaces in your class, so you have to put it under: app/lib/active_support/cache/smart_mem_cache_store.rb.</p>
<p>If you want to have it hanging at app/lib/smart_mem_cache_store.rb, you can require the file manually, instead of relying on Rails autoload.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Thomas Hanley		</title>
		<link>/2009/09/how-to-avoid-dog-pile-effect-rails-app/comment-page-1/#comment-286</link>

		<dc:creator><![CDATA[Thomas Hanley]]></dc:creator>
		<pubDate>Tue, 13 Oct 2009 17:53:49 +0000</pubDate>
		<guid isPermaLink="false">/?p=246#comment-286</guid>

					<description><![CDATA[I get issues trying to start up the application with this in my lib.

/Workspace/lc_dev/lib/smart_mem_cache_store.rb to define SmartMemCacheStore

In my development.rb:
config.cache_store = :smart_mem_cache_store

In environments.rb:
cache = ActiveSupport::Cache::MemCacheStore.new(fragment_memcache_servers,shared_memcache_options.merge(:namespace =&#062; &quot;fragment&quot;))
 self.action_controller.cache_store = cache, {}

I tried putting ActiveSupport::Cache::SmartMemCacheStore and I get the same error.]]></description>
			<content:encoded><![CDATA[<p>I get issues trying to start up the application with this in my lib.</p>
<p>/Workspace/lc_dev/lib/smart_mem_cache_store.rb to define SmartMemCacheStore</p>
<p>In my development.rb:<br />
config.cache_store = :smart_mem_cache_store</p>
<p>In environments.rb:<br />
cache = ActiveSupport::Cache::MemCacheStore.new(fragment_memcache_servers,shared_memcache_options.merge(:namespace =&gt; &#8220;fragment&#8221;))<br />
 self.action_controller.cache_store = cache, {}</p>
<p>I tried putting ActiveSupport::Cache::SmartMemCacheStore and I get the same error.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Thomas Hanley		</title>
		<link>/2009/09/how-to-avoid-dog-pile-effect-rails-app/comment-page-1/#comment-824</link>

		<dc:creator><![CDATA[Thomas Hanley]]></dc:creator>
		<pubDate>Tue, 13 Oct 2009 17:53:00 +0000</pubDate>
		<guid isPermaLink="false">/?p=246#comment-824</guid>

					<description><![CDATA[I get issues trying to start up the application with this in my lib.

/Workspace/lc_dev/lib/smart_mem_cache_store.rb to define SmartMemCacheStore

In my development.rb:
config.cache_store = :smart_mem_cache_store

In environments.rb:
cache = ActiveSupport::Cache::MemCacheStore.new(fragment_memcache_servers,shared_memcache_options.merge(:namespace =&#062; &quot;fragment&quot;))
 self.action_controller.cache_store = cache, {}

I tried putting ActiveSupport::Cache::SmartMemCacheStore and I get the same error.]]></description>
			<content:encoded><![CDATA[<p>I get issues trying to start up the application with this in my lib.</p>
<p>/Workspace/lc_dev/lib/smart_mem_cache_store.rb to define SmartMemCacheStore</p>
<p>In my development.rb:<br />
config.cache_store = :smart_mem_cache_store</p>
<p>In environments.rb:<br />
cache = ActiveSupport::Cache::MemCacheStore.new(fragment_memcache_servers,shared_memcache_options.merge(:namespace =&gt; &#8220;fragment&#8221;))<br />
 self.action_controller.cache_store = cache, {}</p>
<p>I tried putting ActiveSupport::Cache::SmartMemCacheStore and I get the same error.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: José Valim		</title>
		<link>/2009/09/how-to-avoid-dog-pile-effect-rails-app/comment-page-1/#comment-224</link>

		<dc:creator><![CDATA[José Valim]]></dc:creator>
		<pubDate>Fri, 11 Sep 2009 09:39:23 +0000</pubDate>
		<guid isPermaLink="false">/?p=246#comment-224</guid>

					<description><![CDATA[@pete we usually lay code on lib/. initializers we use for configuration and for code that should be loaded while rails is loaded (aka monkey patches).

@walter we cannot use super because we need to access the orig_write inside read.]]></description>
			<content:encoded><![CDATA[<p>@pete we usually lay code on lib/. initializers we use for configuration and for code that should be loaded while rails is loaded (aka monkey patches).</p>
<p>@walter we cannot use super because we need to access the orig_write inside read.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: José Valim		</title>
		<link>/2009/09/how-to-avoid-dog-pile-effect-rails-app/comment-page-1/#comment-823</link>

		<dc:creator><![CDATA[José Valim]]></dc:creator>
		<pubDate>Fri, 11 Sep 2009 09:39:00 +0000</pubDate>
		<guid isPermaLink="false">/?p=246#comment-823</guid>

					<description><![CDATA[@pete we usually lay code on lib/. initializers we use for configuration and for code that should be loaded while rails is loaded (aka monkey patches).

@walter we cannot use super because we need to access the orig_write inside read.]]></description>
			<content:encoded><![CDATA[<p>@pete we usually lay code on lib/. initializers we use for configuration and for code that should be loaded while rails is loaded (aka monkey patches).</p>
<p>@walter we cannot use super because we need to access the orig_write inside read.</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
