<?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: An Introduction to memcached</title>
	<atom:link href="http://www.search-this.com/2007/07/24/an-introduction-to-memcached/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.search-this.com/2007/07/24/an-introduction-to-memcached/</link>
	<description>Internet Marketing, Website Promotion and Blogging Advice</description>
	<lastBuildDate>Sun, 29 Jan 2012 02:18:27 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: ling</title>
		<link>http://www.search-this.com/2007/07/24/an-introduction-to-memcached/comment-page-1/#comment-195217</link>
		<dc:creator>ling</dc:creator>
		<pubDate>Sun, 27 Feb 2011 07:44:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.search-this.com/2007/07/24/an-introduction-to-memcached/#comment-195217</guid>
		<description>I consider this page as my first memcache tutorial,
thanks.</description>
		<content:encoded><![CDATA[<p>I consider this page as my first memcache tutorial,<br />
thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: dhanesh mane</title>
		<link>http://www.search-this.com/2007/07/24/an-introduction-to-memcached/comment-page-1/#comment-191543</link>
		<dc:creator>dhanesh mane</dc:creator>
		<pubDate>Wed, 09 Feb 2011 16:53:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.search-this.com/2007/07/24/an-introduction-to-memcached/#comment-191543</guid>
		<description>Hey really nice article, you are really showing simplest way of using memcache.</description>
		<content:encoded><![CDATA[<p>Hey really nice article, you are really showing simplest way of using memcache.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: MrSpooky</title>
		<link>http://www.search-this.com/2007/07/24/an-introduction-to-memcached/comment-page-1/#comment-169281</link>
		<dc:creator>MrSpooky</dc:creator>
		<pubDate>Fri, 09 Jul 2010 07:12:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.search-this.com/2007/07/24/an-introduction-to-memcached/#comment-169281</guid>
		<description>When this article was written, there was only one memcached client extension for PHP, called &quot;memcache&quot;, hence creating a &quot;new Memcache&quot; and using the connect() method.  More recently, a 2nd extension called &quot;memcached&quot; has been released, which seems to be the one your are trying to use.</description>
		<content:encoded><![CDATA[<p>When this article was written, there was only one memcached client extension for PHP, called &#8220;memcache&#8221;, hence creating a &#8220;new Memcache&#8221; and using the connect() method.  More recently, a 2nd extension called &#8220;memcached&#8221; has been released, which seems to be the one your are trying to use.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ian douglas</title>
		<link>http://www.search-this.com/2007/07/24/an-introduction-to-memcached/comment-page-1/#comment-169236</link>
		<dc:creator>ian douglas</dc:creator>
		<pubDate>Thu, 08 Jul 2010 16:59:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.search-this.com/2007/07/24/an-introduction-to-memcached/#comment-169236</guid>
		<description>Why do your examples use &quot;new Memcache&quot; and not &quot;new Memcached&quot; ?

$mcsrv = new Memcached ;
$mcsrv-&gt;connect(&#039;localhost&#039;,11211) or die (&#039;could not connect&#039;) ;

This code fails because the Memcached (with the &#039;d&#039; on the end) doesn&#039;t have a -&gt;connect() method.</description>
		<content:encoded><![CDATA[<p>Why do your examples use &#8220;new Memcache&#8221; and not &#8220;new Memcached&#8221; ?</p>
<p>$mcsrv = new Memcached ;<br />
$mcsrv-&gt;connect(&#8216;localhost&#8217;,11211) or die (&#8216;could not connect&#8217;) ;</p>
<p>This code fails because the Memcached (with the &#8216;d&#8217; on the end) doesn&#8217;t have a -&gt;connect() method.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sreedhar</title>
		<link>http://www.search-this.com/2007/07/24/an-introduction-to-memcached/comment-page-1/#comment-164887</link>
		<dc:creator>Sreedhar</dc:creator>
		<pubDate>Tue, 27 Apr 2010 11:02:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.search-this.com/2007/07/24/an-introduction-to-memcached/#comment-164887</guid>
		<description>How does memorycache behaves when we cluster the servers by means of Apache web server</description>
		<content:encoded><![CDATA[<p>How does memorycache behaves when we cluster the servers by means of Apache web server</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lorenz</title>
		<link>http://www.search-this.com/2007/07/24/an-introduction-to-memcached/comment-page-1/#comment-162138</link>
		<dc:creator>Lorenz</dc:creator>
		<pubDate>Fri, 19 Mar 2010 05:47:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.search-this.com/2007/07/24/an-introduction-to-memcached/#comment-162138</guid>
		<description>Hi, thanx for the tutorial, i&#039;m looking for a method to save temporary data (cache), i think memcache is the solution :-)</description>
		<content:encoded><![CDATA[<p>Hi, thanx for the tutorial, i&#8217;m looking for a method to save temporary data (cache), i think memcache is the solution <img src='http://www.search-this.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: stealther</title>
		<link>http://www.search-this.com/2007/07/24/an-introduction-to-memcached/comment-page-1/#comment-155888</link>
		<dc:creator>stealther</dc:creator>
		<pubDate>Fri, 20 Nov 2009 11:30:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.search-this.com/2007/07/24/an-introduction-to-memcached/#comment-155888</guid>
		<description>what about using database triggers to keep cache up to date?</description>
		<content:encoded><![CDATA[<p>what about using database triggers to keep cache up to date?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Himel</title>
		<link>http://www.search-this.com/2007/07/24/an-introduction-to-memcached/comment-page-1/#comment-151782</link>
		<dc:creator>Himel</dc:creator>
		<pubDate>Fri, 18 Sep 2009 04:36:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.search-this.com/2007/07/24/an-introduction-to-memcached/#comment-151782</guid>
		<description>Hi MrSpooky Can you refer me some more elaborated tutorial or links about memcached. I have checked Danga ... but haven&#039;t found it to be useful for a beginner level database operation.

Thanks in advance.</description>
		<content:encoded><![CDATA[<p>Hi MrSpooky Can you refer me some more elaborated tutorial or links about memcached. I have checked Danga &#8230; but haven&#8217;t found it to be useful for a beginner level database operation.</p>
<p>Thanks in advance.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jsonx</title>
		<link>http://www.search-this.com/2007/07/24/an-introduction-to-memcached/comment-page-1/#comment-151171</link>
		<dc:creator>jsonx</dc:creator>
		<pubDate>Wed, 09 Sep 2009 02:20:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.search-this.com/2007/07/24/an-introduction-to-memcached/#comment-151171</guid>
		<description>Thanks for clear explanation.</description>
		<content:encoded><![CDATA[<p>Thanks for clear explanation.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: shridhar</title>
		<link>http://www.search-this.com/2007/07/24/an-introduction-to-memcached/comment-page-1/#comment-114816</link>
		<dc:creator>shridhar</dc:creator>
		<pubDate>Sat, 22 Nov 2008 06:52:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.search-this.com/2007/07/24/an-introduction-to-memcached/#comment-114816</guid>
		<description>how to store a file(text,word,pdf) within a Memcache and how to use the cached data without creating the file.</description>
		<content:encoded><![CDATA[<p>how to store a file(text,word,pdf) within a Memcache and how to use the cached data without creating the file.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Unicorn</title>
		<link>http://www.search-this.com/2007/07/24/an-introduction-to-memcached/comment-page-1/#comment-114031</link>
		<dc:creator>Unicorn</dc:creator>
		<pubDate>Wed, 19 Nov 2008 05:38:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.search-this.com/2007/07/24/an-introduction-to-memcached/#comment-114031</guid>
		<description>Hi,
What do i do when place when am hosting does not have memcache

thanks in advance</description>
		<content:encoded><![CDATA[<p>Hi,<br />
What do i do when place when am hosting does not have memcache</p>
<p>thanks in advance</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: vicky</title>
		<link>http://www.search-this.com/2007/07/24/an-introduction-to-memcached/comment-page-1/#comment-109828</link>
		<dc:creator>vicky</dc:creator>
		<pubDate>Wed, 05 Nov 2008 12:07:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.search-this.com/2007/07/24/an-introduction-to-memcached/#comment-109828</guid>
		<description>Thanx a lot bro... tat was just wat i wanted to start off... :)</description>
		<content:encoded><![CDATA[<p>Thanx a lot bro&#8230; tat was just wat i wanted to start off&#8230; <img src='http://www.search-this.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: asheshb</title>
		<link>http://www.search-this.com/2007/07/24/an-introduction-to-memcached/comment-page-1/#comment-59437</link>
		<dc:creator>asheshb</dc:creator>
		<pubDate>Fri, 23 May 2008 12:12:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.search-this.com/2007/07/24/an-introduction-to-memcached/#comment-59437</guid>
		<description>Hi MrSpooky,

Indeed a very useful article with everything in one place and very concise, to show how to implement memcache.

thanks</description>
		<content:encoded><![CDATA[<p>Hi MrSpooky,</p>
<p>Indeed a very useful article with everything in one place and very concise, to show how to implement memcache.</p>
<p>thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jc clairotte</title>
		<link>http://www.search-this.com/2007/07/24/an-introduction-to-memcached/comment-page-1/#comment-57445</link>
		<dc:creator>jc clairotte</dc:creator>
		<pubDate>Thu, 15 May 2008 11:38:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.search-this.com/2007/07/24/an-introduction-to-memcached/#comment-57445</guid>
		<description>I didn&#039;t think it was so easy to implement. Great tutorial.</description>
		<content:encoded><![CDATA[<p>I didn&#8217;t think it was so easy to implement. Great tutorial.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: MrSpooky</title>
		<link>http://www.search-this.com/2007/07/24/an-introduction-to-memcached/comment-page-1/#comment-47783</link>
		<dc:creator>MrSpooky</dc:creator>
		<pubDate>Tue, 01 Apr 2008 01:51:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.search-this.com/2007/07/24/an-introduction-to-memcached/#comment-47783</guid>
		<description>One tidbit that might apply to a couple of the above comments.

You can store any object, array or value that can be serialized into a string, so the only things you can&#039;t store in memcache are file handles and database connections (although wouldn&#039;t it be sweet to be able to pool DB connections in PHP with memcache?)

The max size of any value in memcached is 1MB, so large result sets from the DB won&#039;t fit (trust me, I&#039;ve tried).</description>
		<content:encoded><![CDATA[<p>One tidbit that might apply to a couple of the above comments.</p>
<p>You can store any object, array or value that can be serialized into a string, so the only things you can&#8217;t store in memcache are file handles and database connections (although wouldn&#8217;t it be sweet to be able to pool DB connections in PHP with memcache?)</p>
<p>The max size of any value in memcached is 1MB, so large result sets from the DB won&#8217;t fit (trust me, I&#8217;ve tried).</p>
]]></content:encoded>
	</item>
</channel>
</rss>

