memcache

Posted super久违

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了memcache相关的知识,希望对你有一定的参考价值。

win10下安装php7.2的memcache扩展

 版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/qq_35349114/article/details/81028499

安装memcache:http://www.runoob.com/memcached/window-install-memcached.html

 

扩展 下载地址:https://download.csdn.net/download/qq_35349114/10643368

服务 下载地址:https://download.csdn.net/download/qq_35349114/10643358

 

 

1.4.4 
c:memcachedmemcached.exe -d install 
c:memcachedmemcached.exe -d start 

c:memcachedmemcached.exe -d stop

1.4.5

https://stackoverflow.com/questions/34952502/memcache-for-php7-on-windows

技术图片

https://github.com/nono303/PHP7-memcache-dll

 

根据自己的php版本下载

下载解压后,

就到 php/ext 目录下 把 php_memcache.dll 放到里面

然后在 php 目录下的 php.ini 增加一段内容 
extension=php_memcache.dll

加完之后,重启 apache或者nginx

然后 在php页面输出phpinfo();

检查 memcache 是否成功加载了。

如果成功加载了 ,就可以 在一个php页面做 memcache测试了

 

  1.  
    public function testMemcache() {
  2.  
    $memcache = new Memcache;
  3.  
    $memcache->connect(‘127.0.0.1‘, 11211) or die(‘shit‘);
  4.  
    $memcache->set(‘key‘, ‘hello memcache!‘);
  5.  
    $out = $memcache->get(‘key‘);
  6.  
    echo $out;
  7.  
    }

成功的话会输出

hello memcache!

以上是关于memcache的主要内容,如果未能解决你的问题,请参考以下文章

九爷 带你了解 Memcache工作原理总结

如何在 Django 中显式重置模板片段缓存?

Memcached源代码分析 - Memcached源代码分析之消息回应

Memcached的配置,SSH项目中的整合(com.whalin),Memcached工具类,Memcached的代码调用

memcached 源代码安装

实验Memcached Server远程代码执行漏洞