<?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>Justin's Tech Blog &#187; Memcached</title>
	<atom:link href="http://www.sofee.cn/blog/category/technical/memcached/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.sofee.cn/blog</link>
	<description>世界其实很简单，复杂的是人；生活其实很轻松，沉重的是感情！</description>
	<lastBuildDate>Sun, 17 Jan 2010 17:17:22 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>CentOS 5.0 下架设Memcached服务器</title>
		<link>http://www.sofee.cn/blog/2007/06/25/70/</link>
		<comments>http://www.sofee.cn/blog/2007/06/25/70/#comments</comments>
		<pubDate>Mon, 25 Jun 2007 04:32:32 +0000</pubDate>
		<dc:creator>Justin</dc:creator>
				<category><![CDATA[CentOS]]></category>
		<category><![CDATA[Memcached]]></category>
		<category><![CDATA[libevent]]></category>

		<guid isPermaLink="false">http://www.sofee.cn/blog/2007/06/25/70/</guid>
		<description><![CDATA[1、下载安装包

# cd /usr/local/src
# wget http://www.monkey.org/~provos/libevent-1.3b.tar.gz
# wget http://danga.com/memcached/dist/memcached-1.2.2.tar.gz

2、开始安装
安装libevent

# tar -zxvf libevent-1.3b.tar.gz
# cd libevent-1.3b.tar.gz
# ./configure
# make
# make install


安装memcached

# cd ..
# tar -zxvf memcached-1.2.2.tar.gz
# cd memcached-1.2.2
# ./configure
# make
# make install

3、启动Memcached

# /usr/local/bin/memcached -d -u apache -m 256 -c 8192

4、问题解决
如果出现以下错误
/usr/bin/memcached: error while loading shared libraries: libevent-1.3b.so.1: cannot open shared object file: No such file or directory
通常是因为服务器是64位的关系，执行以下命令即可解决：

# cp /usr/local/lib/libevent* /usr/lib64/ -R

其中/usr/local/lib目录得看你的libevent的安装目录，默认是装在/usr/local目录下。
5、有用的链接:
Memcached [...]]]></description>
		<wfw:commentRss>http://www.sofee.cn/blog/2007/06/25/70/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
