window下memcache的安装

window下装 memcache,怎么装呢,参阅:http://jehiah.cz/projects/memcached-win32/

1. Unzip the binaries in your desired directory (eg. c:/memcached)

2. Install the service using the command: 'c:/memcached/memcached.exe -d install' from either the command line

3. Start the server from the Microsoft Management Console or by running the following command: 'c:/memcached/memcached.exe -d start'

4. Use the server, by default listening to port 11211

简单翻译如下:

1、下载memcached 1.2.1 for Win32 binaries,并解压缩

2、打开命令行窗口【win+R 输入cmd 确定】,并进入解压的文件夹目录

3、输入memcached.exe-d install 安装服务

4、输入memcached.exe-dstart 启动服务l

keyword:window memcache 安装

memcached官网:http://memcached.org/

memcached的基本设置

-p 监听的端口
-l 连接的IP地址, 默认是本机
-d start 启动memcached服务
-d restart 重起memcached服务
-d stop|shutdown 关闭正在运行的memcached服务
-d install 安装memcached服务
-d uninstall 卸载memcached服务
-u 以的身份运行 (仅在以root运行的时候有效)
-m 最大内存使用,单位MB。默认64MB
-M 内存耗尽时返回错误,而不是删除项
-c 最大同时连接数,默认是1024
-f 块大小增长因子,默认是1.25
-n 最小分配空间,key+value+flags默认是48
-h 显示帮助

Memcache环境测试
运行下面的php文件,如果有输出This is a test!,就表示环境搭建成功。开始领略Memcache的魅力把!
< ?php
$mem = new Memcache;
$mem->connect(”127.0.0.1″, 11211);
$mem->set(’key’, ‘This is a test!’, 0, 60);
$val = $mem->get(’key’);
echo $val;
?>

你可能感兴趣的:(memcache)