<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Monster Oasis &#187; memcache</title>
	<atom:link href="http://www.monster.com.tw/archives/tag/memcache/feed" rel="self" type="application/rss+xml" />
	<link>http://www.monster.com.tw</link>
	<description>Sky / Ocean / Tree</description>
	<lastBuildDate>Wed, 08 Feb 2012 08:14:03 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>memcached 真的很有意思 &#8230;</title>
		<link>http://www.monster.com.tw/archives/1895</link>
		<comments>http://www.monster.com.tw/archives/1895#comments</comments>
		<pubDate>Fri, 22 Jan 2010 15:10:24 +0000</pubDate>
		<dc:creator>monster</dc:creator>
				<category><![CDATA[JOB]]></category>
		<category><![CDATA[System/Linux/Unix*]]></category>
		<category><![CDATA[memcache]]></category>

		<guid isPermaLink="false">http://www.monster.com.tw/archives/1895</guid>
		<description><![CDATA[這個版本 support multiple instance * With this version of Memcached Gentoo now supports multiple instances. * To enable this you should create a symlink in /etc/init.d/ for each instance * to /etc/init.d/memcached and create the matching conf files in /etc/conf.d/ * Please see Gentoo bug #122246 for more info MEMCACHED_BINARY=&#34;/usr/bin/memcached&#34; MEMUSAGE=&#34;64&#34; MEMCACHED_RUNAS=&#34;memcached&#34; MAXCONN=&#34;1024&#34; LISTENON=&#34;172.30.0.43&#34; PORT=&#34;11212&#34; [...]]]></description>
		<wfw:commentRss>http://www.monster.com.tw/archives/1895/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CodeIgniter MVC  CRUD + memcache = Secret Message http://msg.monster.com.tw</title>
		<link>http://www.monster.com.tw/archives/1716</link>
		<comments>http://www.monster.com.tw/archives/1716#comments</comments>
		<pubDate>Mon, 21 Dec 2009 10:30:12 +0000</pubDate>
		<dc:creator>monster</dc:creator>
				<category><![CDATA[Copy_N_Paste]]></category>
		<category><![CDATA[Network service]]></category>
		<category><![CDATA[Programming/php]]></category>
		<category><![CDATA[codeigniter]]></category>
		<category><![CDATA[CRUD]]></category>
		<category><![CDATA[memcache]]></category>
		<category><![CDATA[monster]]></category>
		<category><![CDATA[MVC]]></category>
		<category><![CDATA[sample]]></category>

		<guid isPermaLink="false">http://www.monster.com.tw/archives/1716</guid>
		<description><![CDATA[這個 idea 是來自這個網站 : https://privnote.com/ , 簡單的說它是一個經由 https 保護傳送內容的網路服務 , user 用這個服務把臨時要給朋友的機密/私人資料譬如 password / URL 之類的 data 存放在這網站上, 然後此系統會給 user 一個唯一網址, 再把這網址給朋友, 開啟這個唯一網址後, 就可以看到這個訊息, 系統同時會把這訊息從系統中刪除… 哈哈! 看懂了嗎? 我的改進是用 memcache 的 expire 機制, 設定 10分鐘後, 若 user 沒讀過此訊息, 訊息會 &#8216;自動&#8217; 銷毀… 我的站若再去申請 ssl 加密的話就跟那個站功能是類似的了. codeigniter 的 MVC 架構, 讓我很快的把這個 idea implement 出來了 , 基本上就是一個簡單版的 CRUD 我的 [...]]]></description>
		<wfw:commentRss>http://www.monster.com.tw/archives/1716/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>debian / ubuntu 裝 memcached 跟 pecl memcache</title>
		<link>http://www.monster.com.tw/archives/1708</link>
		<comments>http://www.monster.com.tw/archives/1708#comments</comments>
		<pubDate>Mon, 14 Dec 2009 12:35:30 +0000</pubDate>
		<dc:creator>monster</dc:creator>
				<category><![CDATA[JOB]]></category>
		<category><![CDATA[System/Linux/Unix*]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[memcache]]></category>
		<category><![CDATA[Programming/php]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.monster.com.tw/archives/1708</guid>
		<description><![CDATA[裝 memcached : apt-get install memcached /etc/default/memcached 裡面設 yes –&#62; 啟用 設定檔 /etc/memcached.conf 裝 php5 的 memcache extension apt-get install php5-memcache 會產生 /etc/php5/conf.d/memcache.ini 內容是 extension=memcache.so [memcache] memcache.dbpath="/var/lib/memcache" memcache.maxreclevel=0 memcache.maxfiles=0 memcache.archivememlim=0 memcache.maxfilesize=0 memcache.maxratio=0 &#8212;&#8211; 以下是舊的方法, 2010.0630 前 裝 pecl memcache aptitude install libevent-dev 因為 pecl 要用到 phpize , 所以要裝 php5-dev 套件 apt-get install php5-dev apt-get install [...]]]></description>
		<wfw:commentRss>http://www.monster.com.tw/archives/1708/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>一些 memcache 的資料</title>
		<link>http://www.monster.com.tw/archives/1655</link>
		<comments>http://www.monster.com.tw/archives/1655#comments</comments>
		<pubDate>Fri, 06 Nov 2009 14:07:21 +0000</pubDate>
		<dc:creator>monster</dc:creator>
				<category><![CDATA[Copy_N_Paste]]></category>
		<category><![CDATA[Programming/php]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[System/Linux/Unix*]]></category>
		<category><![CDATA[DATABASE]]></category>
		<category><![CDATA[memcache]]></category>

		<guid isPermaLink="false">http://www.monster.com.tw/archives/1655</guid>
		<description><![CDATA[http://code.google.com/p/memcached-tag/ http://blog.developers.api.sina.com.cn/?tag=php-memcached http://code.google.com/p/dbcached/ http://tech.ddvip.com/2008-10/122405777578200.html http://hi.baidu.com/jrckkyy/blog/item/cb68141e8afa621740341771.html Share on Facebook]]></description>
		<wfw:commentRss>http://www.monster.com.tw/archives/1655/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>使用 memcache 的 design pattern</title>
		<link>http://www.monster.com.tw/archives/1299</link>
		<comments>http://www.monster.com.tw/archives/1299#comments</comments>
		<pubDate>Thu, 02 Jul 2009 08:17:31 +0000</pubDate>
		<dc:creator>monster</dc:creator>
				<category><![CDATA[DATABASE]]></category>
		<category><![CDATA[Programming/misc]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[memcache]]></category>

		<guid isPermaLink="false">http://www.monster.com.tw/archives/1299</guid>
		<description><![CDATA[另外一篇 : race condition Share on Facebook]]></description>
		<wfw:commentRss>http://www.monster.com.tw/archives/1299/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>安裝 apache / mod_memcache</title>
		<link>http://www.monster.com.tw/archives/1007</link>
		<comments>http://www.monster.com.tw/archives/1007#comments</comments>
		<pubDate>Sat, 14 Mar 2009 09:50:47 +0000</pubDate>
		<dc:creator>monster</dc:creator>
				<category><![CDATA[JOB]]></category>
		<category><![CDATA[System/Linux/Unix*]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[memcache]]></category>

		<guid isPermaLink="false">http://www.monster.com.tw/archives/1007</guid>
		<description><![CDATA[準備好這幾個 tarball, 並且解開: drwxr-xr-x&#160; 6 rimmon rimmon&#160; 576 Mar 14 17:36 mod_memcached_cache-0.1.0 drwxr-xr-x&#160; 7 rimmon rimmon&#160; 584 Mar 14 17:09 apr_memcache-0.7.0 drwxr-xr-x 12 rimmon rimmon 1416 Mar 14 16:55 httpd-2.2.11 Share on Facebook]]></description>
		<wfw:commentRss>http://www.monster.com.tw/archives/1007/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Protected: [ruten] memcache usage</title>
		<link>http://www.monster.com.tw/archives/919</link>
		<comments>http://www.monster.com.tw/archives/919#comments</comments>
		<pubDate>Thu, 05 Feb 2009 03:57:49 +0000</pubDate>
		<dc:creator>monster</dc:creator>
				<category><![CDATA[JOB]]></category>
		<category><![CDATA[gentoo]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[memcache]]></category>
		<category><![CDATA[system]]></category>

		<guid isPermaLink="false">http://www.monster.com.tw/archives/919</guid>
		<description><![CDATA[There is no excerpt because this is a protected post.]]></description>
		<wfw:commentRss>http://www.monster.com.tw/archives/919/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

