Windows下的Memcache安装与测试教程

简介:
1、下载memcache for windows
  下载地址:http://splinedancer.com/memcached-win32/,推荐下载binaries版本,
  解压(本例中解压到e:memcached-1.2.4)。
  2、安装memcache,
  在命令行状态下输入: e:/memcached-1.2.4/memcached.exe -d install 。至此memcached已经安装成windows服务
  3、启动memcache,
  在命令行下输入: e:/memcached-1.2.4/memcached.exe -d start 以启动memcached服务。
  或者也可以选择在windows服务中启动
  到此,memcache的服务器端就准备完毕,接下来需要安装php的memcache扩展,
   php安装Memcached模块支持
  1、下载php_memcache.dll模块,
  你可以从http://downloads.php.net/pierre/找到对应的版本,
  php5.3对应php_memcache-2.2.6-5.3-vc9-x86.zip
  将php_memcache.dll放到php\ext目录下,
  2、修改php.ini来加入扩展,并并重启apache服务器
  加入extension=php_memcache.dll、重启apache服务器,
  然后查看一下phpinfo,如果有memcache,那么就说明安装成功!
  测试windows下的Memcached
   测试代码如下:
<?php
$mem = new Memcache;
$mem->connect("127.0.0.1", 11211);
$mem->set('key', 'Hello Memcached!', 0, 60);
$val = $mem->get('key');
echo $val;
?>
Example #1 memcache extension overview example
In this example, an object is being saved in the cache and then retrieved back. Object and other non-scalar types are serialized before saving, so it's impossible to store resources (i.e. connection identifiers and others) in the cache.
<?php
$memcache = new Memcache;
$memcache->connect('localhost', 11211) or die ("Could not connect");
$version = $memcache->getVersion();
echo "Server's version: ".$version."<br/>n";
$tmp_object = new stdClass;
$tmp_object->str_attr = 'test';
$tmp_object->int_attr = 123;
$memcache->set('key', $tmp_object, false, 10) or die ("Failed to save data at the  server");
echo "Store data in the cache (data will expire in 10 seconds)<br/>n";
$get_result = $memcache->get('key');
echo "Data from the cache:<br/>n";
var_dump($get_result);
?>
Example #2 Using memcache session handler
<?php
$session_save_path = "tcp://$host:$port?persistent=1&weight=2&timeout=2&retry_interval=10,  ,tcp://$host:$port  ";
ini_set('session.save_handler', 'memcache');
ini_set('session.save_path', $session_save_path);
?>
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手册 “LXXV. Memcache Functions” 这章。
  Memcache面向对象的常用接口包括:
  Memcache::connect — 打开一个到Memcache的连接
  Memcache::pconnect — 打开一个到Memcache的长连接
  Memcache::close — 关闭一个Memcache的连接
  Memcache::set — 保存数据到Memcache服务器上
  Memcache::get — 提取一个保存在Memcache服务器上的数据
  Memcache::replace — 替换一个已经存在Memcache服务器上的项目(功能类似Memcache::set)
  Memcache::delete — 从Memcache服务器上删除一个保存的项目
  Memcache::flush — 刷新所有Memcache服务器上保存的项目(类似于删除所有的保存的项目)
  Memcache::getStats — 获取当前Memcache服务器运行的状态
  Memcache::addServer — 分布式服务器添加一个服务器

最新内容请见作者的GitHub页:http://qaseven.github.io/
相关文章
|
27天前
|
存储 弹性计算 运维
阿里云国际Windows操作系统迁移教程
阿里云国际Windows操作系统迁移教程
|
7天前
|
缓存 测试技术 Apache
告别卡顿!Python性能测试实战教程,JMeter&Locust带你秒懂性能优化💡
告别卡顿!Python性能测试实战教程,JMeter&Locust带你秒懂性能优化💡
19 1
|
30天前
|
自然语言处理 机器人 Python
ChatGPT使用学习:ChatPaper安装到测试详细教程(一文包会)
ChatPaper是一个基于文本生成技术的智能研究论文工具,能够根据用户输入进行智能回复和互动。它支持快速下载、阅读论文,并通过分析论文的关键信息帮助用户判断是否需要深入了解。用户可以通过命令行或网页界面操作,进行论文搜索、下载、总结等。
43 1
ChatGPT使用学习:ChatPaper安装到测试详细教程(一文包会)
|
12天前
|
人工智能 测试技术 Windows
Windows 竞技场:面向下一代AI Agent的测试集
【10月更文挑战第25天】随着人工智能的发展,大型语言模型(LLMs)在多模态任务中展现出巨大潜力。为解决传统基准测试的局限性,研究人员提出了Windows Agent Arena,一个在真实Windows操作系统中评估AI代理性能的通用环境。该环境包含150多个多样化任务,支持快速并行化评估。研究团队还推出了多模态代理Navi,在Windows领域测试中成功率达到19.5%。尽管存在局限性,Windows Agent Arena仍为AI代理的评估和研究提供了新机遇。
32 3
|
27天前
|
数据安全/隐私保护 Windows
安装 Windows Server 2019
安装 Windows Server 2019
|
27天前
|
Windows
安装 Windows Server 2003
安装 Windows Server 2003
|
28天前
|
NoSQL Shell MongoDB
Windows 平台安装 MongoDB
10月更文挑战第10天
37 0
Windows 平台安装 MongoDB
|
1月前
|
Windows Python
Windows安装dlib,遇到问题汇总解决
Windows安装dlib,遇到问题汇总解决
31 4
|
1月前
|
Oracle 关系型数据库 MySQL
Mysql(1)—简介及Windows环境下载安装
MySQL 是一个流行的关系型数据库管理系统(RDBMS),基于 SQL 进行操作。它由瑞典 MySQL AB 公司开发,后被 Sun Microsystems 收购,现为 Oracle 产品。MySQL 是最广泛使用的开源数据库之一,适用于 Web 应用程序、数据仓库和企业应用。
52 2
|
1月前
|
JavaScript Windows
windows安装vue
windows安装vue