<?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: memcache.php stats like apc.php</title>
	<atom:link href="http://livebookmark.net/journal/2008/05/21/memcachephp-stats-like-apcphp/feed/" rel="self" type="application/rss+xml" />
	<link>http://livebookmark.net/journal/2008/05/21/memcachephp-stats-like-apcphp/</link>
	<description>web, money and etc.</description>
	<lastBuildDate>Wed, 22 Dec 2010 21:08:18 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Wein-Bertram</title>
		<link>http://livebookmark.net/journal/2008/05/21/memcachephp-stats-like-apcphp/comment-page-1/#comment-7015</link>
		<dc:creator>Wein-Bertram</dc:creator>
		<pubDate>Wed, 22 Dec 2010 21:08:18 +0000</pubDate>
		<guid isPermaLink="false">http://livebookmark.net/journal/?p=169#comment-7015</guid>
		<description>Thanks for sharing, will implement it tonight - this memcache.php is exactly what I was looking for.
Cheers Bertram</description>
		<content:encoded><![CDATA[<p>Thanks for sharing, will implement it tonight &#8211; this memcache.php is exactly what I was looking for.<br />
Cheers Bertram</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alex F</title>
		<link>http://livebookmark.net/journal/2008/05/21/memcachephp-stats-like-apcphp/comment-page-1/#comment-7004</link>
		<dc:creator>Alex F</dc:creator>
		<pubDate>Fri, 22 Oct 2010 03:02:10 +0000</pubDate>
		<guid isPermaLink="false">http://livebookmark.net/journal/?p=169#comment-7004</guid>
		<description>Thanks for this!  It was tough to find a memcached monitor.</description>
		<content:encoded><![CDATA[<p>Thanks for this!  It was tough to find a memcached monitor.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Redakteur</title>
		<link>http://livebookmark.net/journal/2008/05/21/memcachephp-stats-like-apcphp/comment-page-1/#comment-7002</link>
		<dc:creator>Redakteur</dc:creator>
		<pubDate>Wed, 13 Oct 2010 10:55:20 +0000</pubDate>
		<guid isPermaLink="false">http://livebookmark.net/journal/?p=169#comment-7002</guid>
		<description>Thanks, very helpful.  I used a small function to make it work with unix sockets.

function gethostport($server) {
  if(strpos($server, &#039;unix:/&#039;)===0){
      $host = $server;
      $port = 0;
    }
    else{
      $strs = explode(&#039;:&#039;,$server);
      $host = $strs[0];
      $port = $strs[1];
    }
  return array($host, $port);
}</description>
		<content:encoded><![CDATA[<p>Thanks, very helpful.  I used a small function to make it work with unix sockets.</p>
<p>function gethostport($server) {<br />
  if(strpos($server, &#8216;unix:/&#8217;)===0){<br />
      $host = $server;<br />
      $port = 0;<br />
    }<br />
    else{<br />
      $strs = explode(&#8216;:&#8217;,$server);<br />
      $host = $strs[0];<br />
      $port = $strs[1];<br />
    }<br />
  return array($host, $port);<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: asb</title>
		<link>http://livebookmark.net/journal/2008/05/21/memcachephp-stats-like-apcphp/comment-page-1/#comment-6985</link>
		<dc:creator>asb</dc:creator>
		<pubDate>Mon, 24 May 2010 18:56:59 +0000</pubDate>
		<guid isPermaLink="false">http://livebookmark.net/journal/?p=169#comment-6985</guid>
		<description>Adding multiple memcached instances as an array does not work. Neither

$MEMCACHE_SERVERS[] = array(
  &quot;localhost:11211&quot;,
  &quot;localhost:11212&quot;,
  &quot;localhost:11213&quot;,
  &quot;localhost:11214&quot;,
  &quot;localhost:11215&quot;,
  &quot;localhost:11216&quot;,
  &quot;localhost:11217&quot;,
  &quot;localhost:11218&quot;,
  &quot;localhost:11219&quot;,
);

nor

$MEMCACHE_SERVERS[] = array(
  &#039;localhost:11211&#039;,
  &#039;localhost:11212&#039;,
  &#039;localhost:11213&#039;,
  &#039;localhost:11214&#039;,
  &#039;localhost:11215&#039;,
  &#039;localhost:11216&#039;,
  &#039;localhost:11217&#039;,
  &#039;localhost:11218&#039;,
  &#039;localhost:11219&#039;,
);

results i useful output. Message on memcache.php:

&quot;Cant connect to:Array:&quot;</description>
		<content:encoded><![CDATA[<p>Adding multiple memcached instances as an array does not work. Neither</p>
<p>$MEMCACHE_SERVERS[] = array(<br />
  &#8220;localhost:11211&#8243;,<br />
  &#8220;localhost:11212&#8243;,<br />
  &#8220;localhost:11213&#8243;,<br />
  &#8220;localhost:11214&#8243;,<br />
  &#8220;localhost:11215&#8243;,<br />
  &#8220;localhost:11216&#8243;,<br />
  &#8220;localhost:11217&#8243;,<br />
  &#8220;localhost:11218&#8243;,<br />
  &#8220;localhost:11219&#8243;,<br />
);</p>
<p>nor</p>
<p>$MEMCACHE_SERVERS[] = array(<br />
  &#8216;localhost:11211&#8242;,<br />
  &#8216;localhost:11212&#8242;,<br />
  &#8216;localhost:11213&#8242;,<br />
  &#8216;localhost:11214&#8242;,<br />
  &#8216;localhost:11215&#8242;,<br />
  &#8216;localhost:11216&#8242;,<br />
  &#8216;localhost:11217&#8242;,<br />
  &#8216;localhost:11218&#8242;,<br />
  &#8216;localhost:11219&#8242;,<br />
);</p>
<p>results i useful output. Message on memcache.php:</p>
<p>&#8220;Cant connect to:Array:&#8221;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: zhuli</title>
		<link>http://livebookmark.net/journal/2008/05/21/memcachephp-stats-like-apcphp/comment-page-1/#comment-6976</link>
		<dc:creator>zhuli</dc:creator>
		<pubDate>Tue, 13 Apr 2010 07:31:56 +0000</pubDate>
		<guid isPermaLink="false">http://livebookmark.net/journal/?p=169#comment-6976</guid>
		<description>it is a good job!
i like this tool!</description>
		<content:encoded><![CDATA[<p>it is a good job!<br />
i like this tool!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Frank</title>
		<link>http://livebookmark.net/journal/2008/05/21/memcachephp-stats-like-apcphp/comment-page-1/#comment-6974</link>
		<dc:creator>Frank</dc:creator>
		<pubDate>Sun, 28 Mar 2010 12:55:11 +0000</pubDate>
		<guid isPermaLink="false">http://livebookmark.net/journal/?p=169#comment-6974</guid>
		<description>Can it also show the memcached version, just like the PHP version you already, it&#039;s a nice debug fact</description>
		<content:encoded><![CDATA[<p>Can it also show the memcached version, just like the PHP version you already, it&#8217;s a nice debug fact</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tomas</title>
		<link>http://livebookmark.net/journal/2008/05/21/memcachephp-stats-like-apcphp/comment-page-1/#comment-6966</link>
		<dc:creator>Tomas</dc:creator>
		<pubDate>Tue, 23 Feb 2010 09:52:36 +0000</pubDate>
		<guid isPermaLink="false">http://livebookmark.net/journal/?p=169#comment-6966</guid>
		<description>Awesome! Just what I was looking for.
Many Thanks!!</description>
		<content:encoded><![CDATA[<p>Awesome! Just what I was looking for.<br />
Many Thanks!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sitekeeper</title>
		<link>http://livebookmark.net/journal/2008/05/21/memcachephp-stats-like-apcphp/comment-page-1/#comment-6963</link>
		<dc:creator>Sitekeeper</dc:creator>
		<pubDate>Fri, 29 Jan 2010 20:15:37 +0000</pubDate>
		<guid isPermaLink="false">http://livebookmark.net/journal/?p=169#comment-6963</guid>
		<description>Great tool, keep up the good work..</description>
		<content:encoded><![CDATA[<p>Great tool, keep up the good work..</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: dkblinux98</title>
		<link>http://livebookmark.net/journal/2008/05/21/memcachephp-stats-like-apcphp/comment-page-1/#comment-6958</link>
		<dc:creator>dkblinux98</dc:creator>
		<pubDate>Thu, 07 Jan 2010 17:01:59 +0000</pubDate>
		<guid isPermaLink="false">http://livebookmark.net/journal/?p=169#comment-6958</guid>
		<description>Thanks for the tool.  It was just what I needed after a new memcached implementation.</description>
		<content:encoded><![CDATA[<p>Thanks for the tool.  It was just what I needed after a new memcached implementation.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Matthew Clark</title>
		<link>http://livebookmark.net/journal/2008/05/21/memcachephp-stats-like-apcphp/comment-page-1/#comment-6900</link>
		<dc:creator>Matthew Clark</dc:creator>
		<pubDate>Sun, 04 Oct 2009 00:14:25 +0000</pubDate>
		<guid isPermaLink="false">http://livebookmark.net/journal/?p=169#comment-6900</guid>
		<description>Woops, my last comment contained a typo.  I meant this:

For exaple, instead of:
$MEMCACHE_SERVERS[] = &#039;server:port&#039;

How about
$MEMCACHE_SERVERS[] = array(&#039;server:port&#039;, &#039;Display Name&#039;)</description>
		<content:encoded><![CDATA[<p>Woops, my last comment contained a typo.  I meant this:</p>
<p>For exaple, instead of:<br />
$MEMCACHE_SERVERS[] = &#8217;server:port&#8217;</p>
<p>How about<br />
$MEMCACHE_SERVERS[] = array(&#8217;server:port&#8217;, &#8216;Display Name&#8217;)</p>
]]></content:encoded>
	</item>
</channel>
</rss>

