Memcached是免费和开源、高性能、分布式内存对象缓存系统,通用在自然界,但用于加速动态web应用程序,减轻数据库负载。” memcached的更多信息可以在找到
.本文将解释如何安装memcached和PHP5-MemCached模块在Debian 6.0(Squeeze) 给Apache2
1. 安装
apt-get install memcached php5-memcached
“apt-get”是一个非常强大的命令行工具来处理软件包。这里有一个技巧如何使用“apt-get”,举个栗子:我要安装Memcached和php相关联的模块,但我不太确定完整的包的名称,然后我们可以使用下面的命令来搜索可用的软件包列表:
apt-cache search memcache
搜索结果:
memcached - A high-performance memory object caching systemmemcachedb - Persistent storage engine using the memcache protocol...... php5-memcache - memcache extension module for PHP5php5-memcached - memcached extension module for PHP5
你应该找到php5-memcache和php5-memcached php5-memcached更新会话的支持。在这里我们要使用php5-memcached。
2. 测试
- 测试memcached 安装后,memcached应该已经运行。你可以通过使用下面的命令检查:
netstat -tap | grep memcached
你会看到这样的结果
tcp 0 0 localhost:11211 *:* LISTEN 2132/memcached
你可以通过配置文件_/etc/memcached.conf_来配置你的memcached。
- PHP5-Memcached 模块测试
首先开启你的apache服务器
/etc/init.d/apache2 restart
然后创建一个文件,写入php探针
然后用浏览器打开
- 使用
更多细节请查看,这是一个简单的例子:
addServer('localhost', 11211);$m->set('key', 'hello world');var_dump($m->get('key'));?>
提示:因为memcached 不像mysql那样需要密码验证,所以建议采取一些配置不允许非法访问,比如配置防火墙。