<?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"
	>
<channel>
	<title>Comments on: memcached on solaris 10 for Roller4</title>
	<atom:link href="http://number9.hellooperator.net/articles/2008/08/08/memcached-on-solaris-10-for-roller4/feed" rel="self" type="application/rss+xml" />
	<link>http://number9.hellooperator.net/articles/2008/08/08/memcached-on-solaris-10-for-roller4</link>
	<description>a bird to bring my message home</description>
	<pubDate>Fri, 21 Nov 2008 23:26:13 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.3</generator>
		<item>
		<title>By: Confluence: Eric Mickelson</title>
		<link>http://number9.hellooperator.net/articles/2008/08/08/memcached-on-solaris-10-for-roller4#comment-53019</link>
		<dc:creator>Confluence: Eric Mickelson</dc:creator>
		<pubDate>Wed, 01 Oct 2008 17:47:10 +0000</pubDate>
		<guid isPermaLink="false">http://number9.hellooperator.net/articles/2008/08/08/memcached-on-solaris-10-for-roller4#comment-53019</guid>
		<description>&lt;strong&gt;Installing memcached...&lt;/strong&gt;

Installation Instructions...</description>
		<content:encoded><![CDATA[<p><strong>Installing memcached&#8230;</strong></p>
<p>Installation Instructions&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dick</title>
		<link>http://number9.hellooperator.net/articles/2008/08/08/memcached-on-solaris-10-for-roller4#comment-43421</link>
		<dc:creator>Dick</dc:creator>
		<pubDate>Sun, 10 Aug 2008 09:47:42 +0000</pubDate>
		<guid isPermaLink="false">http://number9.hellooperator.net/articles/2008/08/08/memcached-on-solaris-10-for-roller4#comment-43421</guid>
		<description>Oh, right :)

I've no experience with TerraCotta or ehCache  (heard good things about both but haven't got round to looking at them yet). memcached is the only cache plugin I've seen for Roller.

It could probably be tweaked to talk to whatever you like, so long as there's a get/put/delete operation to map to. It's all open source, take a look :)</description>
		<content:encoded><![CDATA[<p>Oh, right <img src='http://number9.hellooperator.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>I&#8217;ve no experience with TerraCotta or ehCache  (heard good things about both but haven&#8217;t got round to looking at them yet). memcached is the only cache plugin I&#8217;ve seen for Roller.</p>
<p>It could probably be tweaked to talk to whatever you like, so long as there&#8217;s a get/put/delete operation to map to. It&#8217;s all open source, take a look <img src='http://number9.hellooperator.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: anjan bacchu</title>
		<link>http://number9.hellooperator.net/articles/2008/08/08/memcached-on-solaris-10-for-roller4#comment-43335</link>
		<dc:creator>anjan bacchu</dc:creator>
		<pubDate>Sun, 10 Aug 2008 00:45:49 +0000</pubDate>
		<guid isPermaLink="false">http://number9.hellooperator.net/articles/2008/08/08/memcached-on-solaris-10-for-roller4#comment-43335</guid>
		<description>hi dick,

  thanks for the response.

memcached : I understood how's it is used.

Sorry, I was not being clear. My question was about the memcache plugin in Roller. I was asking along the lines of the possibility of the existence of a plugin for Terracotta/ehCache to do the same thing. 

2nd question : if such a plugin for Terracotta/ehcache existed, then, how modular is it ? What would it take to make any other content management system use it to work with
1) ehcache/Terracotta
2) memcached

thank you,

BR,
~A</description>
		<content:encoded><![CDATA[<p>hi dick,</p>
<p>  thanks for the response.</p>
<p>memcached : I understood how&#8217;s it is used.</p>
<p>Sorry, I was not being clear. My question was about the memcache plugin in Roller. I was asking along the lines of the possibility of the existence of a plugin for Terracotta/ehCache to do the same thing. </p>
<p>2nd question : if such a plugin for Terracotta/ehcache existed, then, how modular is it ? What would it take to make any other content management system use it to work with<br />
1) ehcache/Terracotta<br />
2) memcached</p>
<p>thank you,</p>
<p>BR,<br />
~A</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dick</title>
		<link>http://number9.hellooperator.net/articles/2008/08/08/memcached-on-solaris-10-for-roller4#comment-43298</link>
		<dc:creator>Dick</dc:creator>
		<pubDate>Sat, 09 Aug 2008 21:50:43 +0000</pubDate>
		<guid isPermaLink="false">http://number9.hellooperator.net/articles/2008/08/08/memcached-on-solaris-10-for-roller4#comment-43298</guid>
		<description>Hi Anjan

Roller does page-level caching out of the box - i.e. it stores the content it sends to clients n a directory and serves those static files until they become invalid (when a comment or post arrives). 
This model works well for things like blogs where most of the pages aren't session specific, and content is read much more often than its updated.
 
The roller memcached plugin is a drop-in replacement for the file cache.

Memcache is essentially just a distributed hash, which turns out to be very versatile, extremely simple (there are 2 operations in the API, get() and put()), and insanely fast.
 
More importantly it's language agnostic, you can use the same bunch of memcacheds to cache Rails apps, for example.

Have a look at the memcached page for more information (top of post).</description>
		<content:encoded><![CDATA[<p>Hi Anjan</p>
<p>Roller does page-level caching out of the box - i.e. it stores the content it sends to clients n a directory and serves those static files until they become invalid (when a comment or post arrives).<br />
This model works well for things like blogs where most of the pages aren&#8217;t session specific, and content is read much more often than its updated.</p>
<p>The roller memcached plugin is a drop-in replacement for the file cache.</p>
<p>Memcache is essentially just a distributed hash, which turns out to be very versatile, extremely simple (there are 2 operations in the API, get() and put()), and insanely fast.</p>
<p>More importantly it&#8217;s language agnostic, you can use the same bunch of memcacheds to cache Rails apps, for example.</p>
<p>Have a look at the memcached page for more information (top of post).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: anjan bacchu</title>
		<link>http://number9.hellooperator.net/articles/2008/08/08/memcached-on-solaris-10-for-roller4#comment-43277</link>
		<dc:creator>anjan bacchu</dc:creator>
		<pubDate>Sat, 09 Aug 2008 20:32:59 +0000</pubDate>
		<guid isPermaLink="false">http://number9.hellooperator.net/articles/2008/08/08/memcached-on-solaris-10-for-roller4#comment-43277</guid>
		<description>hi there,

  thanks for writing this up.

  How does Roller use Memcache ? Is this component modular ? Can other software use this easily ? Does Roller have a Terracotta/ehCache plugin, with similar functionality as memcache's ?

thank you,

BR,
~A</description>
		<content:encoded><![CDATA[<p>hi there,</p>
<p>  thanks for writing this up.</p>
<p>  How does Roller use Memcache ? Is this component modular ? Can other software use this easily ? Does Roller have a Terracotta/ehCache plugin, with similar functionality as memcache&#8217;s ?</p>
<p>thank you,</p>
<p>BR,<br />
~A</p>
]]></content:encoded>
	</item>
</channel>
</rss>
