<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0">
<channel>
<title><![CDATA[张宴的博客]]></title> 
<link>http://zyan.cc/index.php</link> 
<description><![CDATA[Web系统架构与底层研发]]></description> 
<language>zh-cn</language> 
<copyright><![CDATA[张宴的博客]]></copyright>
<item>
<link>http://zyan.cc/post/384/</link>
<title><![CDATA[利用shell命令操作Memcached[原创]]]></title> 
<author>张宴 &lt;net@s135.com&gt;</author>
<category><![CDATA[Cache与存储]]></category>
<pubDate>Sun, 30 Nov 2008 05:21:28 +0000</pubDate> 
<guid>http://zyan.cc/post/384/</guid> 
<description>
<![CDATA[ 
	　　[文章作者：张宴 本文版本：v1.0 最后修改：2008.11.30 转载请注明原文链接：<a href="http://blog.zyan.cc/post/384/" target="_blank">http://blog.zyan.cc/post/384/</a>]<br/><br/>　　首先，需要了解Memcached协议，如果不清楚可参考《<a href="http://blog.zyan.cc/book/memcached/" target="_blank">Memcached 协议中英文对照</a>》。<br/><br/>　　1、数据存储（假设key为zhangyan，value为12345）<br/><div style="border-left: 0px dashed #D6C094; margin: 5px; padding: 3px; margin-bottom:0px; border: 1px dashed #00a0c6; background-color: #ffffff;">printf "set zhangyan 0 0 5&#92;r&#92;n12345&#92;r&#92;n" &#124; nc 127.0.0.1 11211</div><span style="color: #008000;">　STORED</span><br/><br/>　　2、数据取回（假设key为zhangyan）<br/><div style="border-left: 0px dashed #D6C094; margin: 5px; padding: 3px; margin-bottom:0px; border: 1px dashed #00a0c6; background-color: #ffffff;">printf "get zhangyan&#92;r&#92;n" &#124; nc 127.0.0.1 11211</div><span style="color: #008000;">　VALUE zhangyan 0 5<br/>　12345<br/>　END</span><br/><br/>　　3、数值增加1（假设key为zhangyan，并且value为正整数）<br/><div style="border-left: 0px dashed #D6C094; margin: 5px; padding: 3px; margin-bottom:0px; border: 1px dashed #00a0c6; background-color: #ffffff;">printf "incr zhangyan 1&#92;r&#92;n" &#124; nc 127.0.0.1 11211</div><span style="color: #008000;">　12346</span><br/><br/>............<br/><br/>Tags - <a href="http://zyan.cc/tags/shell/" rel="tag">shell</a> , <a href="http://zyan.cc/tags/memcached/" rel="tag">memcached</a>
]]>
</description>
</item><item>
<link>http://zyan.cc/post/384/#blogcomment2109</link>
<title><![CDATA[[评论] 利用shell命令操作Memcached[原创]]]></title> 
<author>xi2008wang &lt;user@domain.com&gt;</author>
<category><![CDATA[评论]]></category>
<pubDate>Sun, 30 Nov 2008 16:31:59 +0000</pubDate> 
<guid>http://zyan.cc/post/384/#blogcomment2109</guid> 
<description>
<![CDATA[ 
	沙发.
]]>
</description>
</item><item>
<link>http://zyan.cc/post/384/#blogcomment2110</link>
<title><![CDATA[[评论] 利用shell命令操作Memcached[原创]]]></title> 
<author>maker &lt;user@domain.com&gt;</author>
<category><![CDATA[评论]]></category>
<pubDate>Sun, 30 Nov 2008 17:14:04 +0000</pubDate> 
<guid>http://zyan.cc/post/384/#blogcomment2110</guid> 
<description>
<![CDATA[ 
	张宴周末也不休息？你博客的访问量很不错啊
]]>
</description>
</item><item>
<link>http://zyan.cc/post/384/#blogcomment2691</link>
<title><![CDATA[[评论] 利用shell命令操作Memcached[原创]]]></title> 
<author>dayan &lt;user@domain.com&gt;</author>
<category><![CDATA[评论]]></category>
<pubDate>Tue, 03 Mar 2009 06:11:55 +0000</pubDate> 
<guid>http://zyan.cc/post/384/#blogcomment2691</guid> 
<description>
<![CDATA[ 
	当然,张宴就是偶像
]]>
</description>
</item><item>
<link>http://zyan.cc/post/384/#blogcomment2994</link>
<title><![CDATA[[评论] 利用shell命令操作Memcached[原创]]]></title> 
<author>ONLY &lt;user@domain.com&gt;</author>
<category><![CDATA[评论]]></category>
<pubDate>Fri, 10 Apr 2009 07:34:56 +0000</pubDate> 
<guid>http://zyan.cc/post/384/#blogcomment2994</guid> 
<description>
<![CDATA[ 
	请问：<br/><br/>如何在memcached中保存文件？<br/><br/>例如：<br/><br/>cp -rf /var/www/images/* nc 127.0.0.1 11211<br/><br/>这样的，感谢！
]]>
</description>
</item><item>
<link>http://zyan.cc/post/384/#blogcomment2995</link>
<title><![CDATA[[评论] 利用shell命令操作Memcached[原创]]]></title> 
<author>VeroModa &lt;user@domain.com&gt;</author>
<category><![CDATA[评论]]></category>
<pubDate>Fri, 10 Apr 2009 07:36:16 +0000</pubDate> 
<guid>http://zyan.cc/post/384/#blogcomment2995</guid> 
<description>
<![CDATA[ 
	你好！<br/><br/>请问下，如何向memcached中写入文件，就像是向某个目录中写入文件一样的？<br/><br/>例如：<br/><br/>cp -rf /var/www/images/ nc 127.0.0.1 11211<br/><br/>这样的实现，谢谢！
]]>
</description>
</item><item>
<link>http://zyan.cc/post/384/#blogcomment3010</link>
<title><![CDATA[[评论] 利用shell命令操作Memcached[原创]]]></title> 
<author>ONLY &lt;user@domain.com&gt;</author>
<category><![CDATA[评论]]></category>
<pubDate>Mon, 13 Apr 2009 01:55:30 +0000</pubDate> 
<guid>http://zyan.cc/post/384/#blogcomment3010</guid> 
<description>
<![CDATA[ 
	在网上找到段代码，据说是向memcached中写入文件的。试过了，什么也没发生！<br/>张宴大大帮看看，是哪里的问题？<br/><div class="quote"><div class="quote-title">引用</div><div class="quote-content">&lt;?php<br/><br/>function rscandir($base=&#039;&#039;, &amp;$data=array()) &#123;<br/>$array = array_diff(scandir($base), array(&#039;.&#039;, &#039;..&#039;));<br/><br/>foreach($array as $value) :<br/>&nbsp;&nbsp;if (is_dir($base.$value)) &#123;<br/>&nbsp;&nbsp;&nbsp;&nbsp;$data = rscandir($base.$value.&#039;/&#039;, $data);<br/><br/>&nbsp;&nbsp;&#125;<br/>&nbsp;&nbsp;elseif (is_file($base.$value)) &#123;<br/>&nbsp;&nbsp; $rest = substr($value, -4);<br/>&nbsp;&nbsp; if ((!strcmp($rest,&#039;.jpg&#039;)) &#124;&#124; (!strcmp($rest,&#039;.png&#039;))<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&#124;&#124; (!strcmp($rest,&#039;.gif&#039;)) )&#123;<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; $data[] = $base.$value;<br/>&nbsp;&nbsp; &#125;<br/> &#125;<br/><br/>endforeach;<br/>return $data;<br/>&#125;<br/><br/>$mylist=rscandir(&quot;/var/www/mysite&quot;);<br/><br/>$srch = array(&#039;/var/www/mysite&#039;);<br/>$newval = array(&#039;&#039;);<br/><br/>$memcache_obj = memcache_connect(&quot;192.168.2.1&quot;, 11211);<br/><br/>while (list($key, $val) = each($mylist)) &#123;<br/>&nbsp;&nbsp;$url=str_replace($srch,$newval,$val);<br/>&nbsp;&nbsp;echo &quot;$key =&gt; $val -&gt; &quot;.filesize($val).&quot;\n&quot;;<br/>&nbsp;&nbsp;$value = file_get_contents($val);<br/>&nbsp;&nbsp;memcache_add($memcache_obj, $url, $value, false, 0);<br/>&#125;<br/>?&gt;</div></div><br/>万分感谢！
]]>
</description>
</item><item>
<link>http://zyan.cc/post/384/#blogcomment9208</link>
<title><![CDATA[[评论] 利用shell命令操作Memcached[原创]]]></title> 
<author>cnrainbing &lt;user@domain.com&gt;</author>
<category><![CDATA[评论]]></category>
<pubDate>Wed, 31 Aug 2011 05:53:21 +0000</pubDate> 
<guid>http://zyan.cc/post/384/#blogcomment9208</guid> 
<description>
<![CDATA[ 
	请问在memcache里面保存文件那么怎么取出来呢？保存：cp -rf /var/www/images/* nc 127.0.0.1 11211获取：命令是？
]]>
</description>
</item><item>
<link>http://zyan.cc/post/384/#blogcomment14231</link>
<title><![CDATA[[评论] 利用shell命令操作Memcached[原创]]]></title> 
<author>louis vuitton uk &lt;fsf@fdg.com&gt;</author>
<category><![CDATA[评论]]></category>
<pubDate>Wed, 23 Nov 2011 01:06:31 +0000</pubDate> 
<guid>http://zyan.cc/post/384/#blogcomment14231</guid> 
<description>
<![CDATA[ 
	This <a href="http://www.louisvuittonoutlets.org.uk" target="_blank">louis vuitton uk</a> for sale belongs to the sounding just what are termed as Louis Vuitton vintage best sellers, many other products and services for the reason that range appearing companies.You will easily notice the unfold zippers of this <a href="http://www.coachoutletstoreonlinefree.com" target="_blank">coach outlet store online</a>. That is the decoration. There are some inside pockets for you as well. They are easy to match your clothes and to carry.Let us inspire your inner beauty with fine <a href="http://www.christian-louboutinsale.org.uk" target="_blank">christian louboutin sale</a>. Purse the elegance in bridal wedding. Enjoy the fashion.
]]>
</description>
</item><item>
<link>http://zyan.cc/post/384/#blogcomment17415</link>
<title><![CDATA[[评论] 利用shell命令操作Memcached[原创]]]></title> 
<author>chanel uk &lt;xiang1234xiangxiang@gmail.com&gt;</author>
<category><![CDATA[评论]]></category>
<pubDate>Fri, 13 Apr 2012 09:46:39 +0000</pubDate> 
<guid>http://zyan.cc/post/384/#blogcomment17415</guid> 
<description>
<![CDATA[ 
	<a href="http://www.chanelukoutlets.org.uk" target="_blank">chanel uk</a><br/><a href="http://www.burberryukoutletuk.org" target="_blank">burberry uk</a><br/><a href="http://www.poloralphlaurenuks.org" target="_blank">ralph lauren uk</a>
]]>
</description>
</item><item>
<link>http://zyan.cc/post/384/#blogcomment17441</link>
<title><![CDATA[[评论] 利用shell命令操作Memcached[原创]]]></title> 
<author>chanel uk &lt;xiang1234xiangxiang@gmail.com&gt;</author>
<category><![CDATA[评论]]></category>
<pubDate>Fri, 13 Apr 2012 09:52:59 +0000</pubDate> 
<guid>http://zyan.cc/post/384/#blogcomment17441</guid> 
<description>
<![CDATA[ 
	<a href="http://www.christianlouboutinukuk.org" target="_blank">christian louboutin</a><br/><a href="http://www.tiffanyuksuk.org" target="_blank">tiffanys</a><br/><a href="http://www.gucciukbeltuk.org" target="_blank">gucci uk</a><br/><a href="http://www.frsaclouisvuittonsac.com" target="_blank">louis vuitton sac</a>
]]>
</description>
</item><item>
<link>http://zyan.cc/post/384/#blogcomment17641</link>
<title><![CDATA[[评论] 利用shell命令操作Memcached[原创]]]></title> 
<author>Louis Vuitton Neverfull &lt;louisvuttionhandbags@gmail.com&gt;</author>
<category><![CDATA[评论]]></category>
<pubDate>Sat, 21 Apr 2012 09:34:00 +0000</pubDate> 
<guid>http://zyan.cc/post/384/#blogcomment17641</guid> 
<description>
<![CDATA[ 
	www.lvbagsclassic.com are authorized authentic Louis Vuitton handbags outlet store. All the items at our site are 100% authentic. All our Louis Vuitton handbags will come with the authenticity card, serial Number, dust bag and care booklet. We promise you will be 100% satisfied when you get such cheap authentic Louis Vuitton handbags from us!<br/><a href="http://www.lvbagsclassic.com/louis-vuitton-neverfull-c-1.html" target="_blank">Louis Vuitton Neverfull</a>
]]>
</description>
</item><item>
<link>http://zyan.cc/post/384/#blogcomment17980</link>
<title><![CDATA[[评论] 利用shell命令操作Memcached[原创]]]></title> 
<author>Hogan &lt;user@domain.com&gt;</author>
<category><![CDATA[评论]]></category>
<pubDate>Thu, 10 May 2012 10:10:51 +0000</pubDate> 
<guid>http://zyan.cc/post/384/#blogcomment17980</guid> 
<description>
<![CDATA[ 
	Mentre youre gestione di problemi complessi tra cui PAYE insieme con le imprese del prelievo, l&#039;idea è sicuramente intelligente per acquisire specializzata fare qualcosa di sicuro si sta usando la vostra organizzazione. Self-employmentSelf lavoratori uomini e donne potrebbe anche fare pieno uso <a href="http://www.sitoufficialeihogan-it.net/" target="_blank">Hogan</a> dei ragionieri in tutta Stansted, quando hanno l&#039;effetto della loro prelievo unico e sì, è spesso sconcertante. Stare di fronte a una buona varietà prelievo può essere schiacciante, di conseguenza, il
]]>
</description>
</item><item>
<link>http://zyan.cc/post/384/#blogcomment19111</link>
<title><![CDATA[[评论] 利用shell命令操作Memcached[原创]]]></title> 
<author>coach factory outlet &lt;fgf@hotmail.com&gt;</author>
<category><![CDATA[评论]]></category>
<pubDate>Thu, 17 May 2012 03:56:10 +0000</pubDate> 
<guid>http://zyan.cc/post/384/#blogcomment19111</guid> 
<description>
<![CDATA[ 
	Today, following half a century, mentor leather-bases <a href="http://www.coachfactoryoutletao.net" target="_blank">coach factory outlet</a> continues to be the delicate craft of leather-based master is accountable for,Would you like to meet more friends, or go with the times? If yes, <a href="http://www.coachfactoryoutletao.net" target="_blank">coach factory online</a> is opening welcome doors to you.in the market you definitely can find various colorways that are designed in as well as the high quality that applied in. For most of you would like to come. So just come to our <a href="http://www.coachfactoryoutletao.net" target="_blank">coach factory outlet online</a> store to choose one.
]]>
</description>
</item><item>
<link>http://zyan.cc/post/384/#blogcomment19112</link>
<title><![CDATA[[评论] 利用shell命令操作Memcached[原创]]]></title> 
<author>louis vuitton sale &lt;fgf@hotmail.com&gt;</author>
<category><![CDATA[评论]]></category>
<pubDate>Thu, 17 May 2012 03:56:17 +0000</pubDate> 
<guid>http://zyan.cc/post/384/#blogcomment19112</guid> 
<description>
<![CDATA[ 
	Louis Vuitton belt at <a href="http://www.louisvuittonoutletsalea.com" target="_blank">louis vuitton sale</a> is one kind of fashion accessory with high cost performance among the Louis Vuitton accessories.Offering quality LV products with favorable prices, <a href="http://www.louisvuittonoutletsalea.com" target="_blank">louis vuitton outlet</a> store is at your service. Hurry up, or you can not seize the chance.in fact, <a href="http://www.louisvuittonoutletsalea.com" target="_blank">louis vuitton</a> is one of the most famous fashion design master.he opened the fist suitcase shop called after his name.
]]>
</description>
</item><item>
<link>http://zyan.cc/post/384/#blogcomment19113</link>
<title><![CDATA[[评论] 利用shell命令操作Memcached[原创]]]></title> 
<author>coach outlet online &lt;fgf@hotmail.com&gt;</author>
<category><![CDATA[评论]]></category>
<pubDate>Thu, 17 May 2012 03:56:23 +0000</pubDate> 
<guid>http://zyan.cc/post/384/#blogcomment19113</guid> 
<description>
<![CDATA[ 
	I heard of <a href="http://www.coachoutletonlineao.net" target="_blank">coach outlet online</a> through the advertisement when I was shopping. And now I often brow the webpage and buy Coach bags online.It is a symbol regarding position not to mention nature.Here I would like to launch a excellent bags pertaining to business men.Which may be <a href="http://www.coachoutletonlineao.net" target="_blank">coach outlet store</a>.<a href="http://www.coachoutletonlineao.net" target="_blank">coach outlet</a> has always been simple,durable style features to win consumers.The products are more flexible,with easy bleaching,wear characteristics,and simply use a damp cloth.
]]>
</description>
</item>
</channel>
</rss>