第 20 章 Memcache

简介:

目录

20.1. source code
20.2. yum install

20.1. source code

libevent

# yum install libevent libevent-devel -y
		

memcache

		
# wget http://memcached.googlecode.com/files/memcached-1.4.5.tar.gz
# tar zxf memcached-1.4.5.tar.gz
# cd memcached-1.4.5
# ./configure --prefix=/usr/local/memcached-1.4.5
# make && make install
		
		

start

# ln -s /usr/local/memcached-1.4.5 /usr/local/memcached
# /usr/local/memcached/bin/memcached -d -m 128 -p 11211 -u nobody -l 172.16.0.1
		

Please enable JavaScript to view the <a href="http://disqus.com/?ref_noscript">comments powered by Disqus.</a>comments powered by Disqus





原文出处:Netkiller 系列 手札
本文作者:陈景峯
转载请与作者联系,同时请务必标明文章原始出处和作者信息及本声明。

目录
相关文章
|
3月前
|
缓存 NoSQL Redis
Redis雪崩问题
Redis雪崩问题
27 1
|
4月前
|
缓存 NoSQL Redis
Redis雪崩
Redis雪崩
31 0
|
2月前
|
存储 NoSQL Go
Redis 双端链表
Redis 双端链表
26 0
|
8月前
|
存储 缓存 NoSQL
|
8月前
|
缓存 NoSQL 关系型数据库
|
8月前
|
NoSQL 安全 Redis
|
9月前
|
NoSQL 关系型数据库 MySQL
Redis1
Redis1
43 0
|
9月前
|
存储 缓存 NoSQL
Redis初探
本篇深入介绍了Redis(Remote Dictionary Server)这一开源的内存数据存储系统,以及它在现代应用开发中的用途和优势。首先,我们对Redis进行了初步探索,解释了Redis是什么,它的主要特点以及适用场景。接着,我们详细讨论了Redis的安装和配置过程,提供了在Linux环境下安装Redis的步骤,并展示了如何启动和关闭Redis服务器。
205 0
|
12月前
|
存储 SQL 缓存
|
12月前
|
NoSQL 安全 Redis
Redis7
Redis7