• THINKPHP3.2+PHP5.3 配置MEMCACHE


    一、下载并安装memcached服务器端软件

       1、下载memcached软件

          32位下载地址: memcached-win32-1.4.4-14.zip(直接下载),memcached-win32-1.4.4-14.zip下载页面:http://blog.couchbase.com/memcached-144-windows-32-bit-binary-now-available

          64位下载地址:memcached-win64-1.4.4-14.zip(直接下载),memcached-win64-1.4.4-14.zip下载页面:http://blog.couchbase.com/memcached-windows-64-bit-pre-release-available

          我使用的是wamp,64位电脑。下载memcached服务器端软件压缩包。

    解压压缩包到指定目录,我选择的是D:\memcached

     2、安装memcached

         以管理员身份运行 cmd.exe,并转至memcached所在文件夹。并安装memcached。安装成服务

      安装之后无任何提示。

    3、启动memcached服务

       继续在cmd.exe 执行开启memcached命令 :

    1
    memcached.exe -d start

      然后去任务管理器中进程查看memcached服务是否已经启动。

      4、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 显示帮助

        5、memcached的停止与卸载命令

    1 D:\memcached> memcached.exe -d stop
    2 D:\memcached> memcached.exe -d uninstall

    二、PHP安装memcache扩展

       1、下载memcache.dll扩展

       下载地址:http://pecl.php.net/package/memcache/3.0.8/windows

       下载注意事项:选择匹配自己环境的版本以及线程安全版本。

     我本地使用wamp2.5 php 版本是5.5  Windows 64位 所以下载的是5.5 Thread Safe (TS) x64

      2、下载完成之后,解压压缩包如下图。

         将其中的php_memcache.dll 扩展文件拷贝到 php 的扩展目录中,例如(D:\wamp\bin\php\php5.5.12\ext)

    3、修改php.ini文件

      打开php的php.ini文件(我的地址是:D:\wamp\bin\apache\apache2.4.9\bin\php.ini)

      添加一行代码:

    1
    extension=php_memcache.dll

      如图:

    注意:必须在新的一行,前面不能有分号。分号代表注释点,不能使用。

    然后保存之后,重启服务器(apache或是nginx或是iis)我直接重启wamp就好。

    Memcache缓存驱动
    <?php
    // +----------------------------------------------------------------------
    // | ThinkPHP [ WE CAN DO IT JUST THINK IT ]
    // +----------------------------------------------------------------------
    // | Copyright (c) 2006-2014 http://thinkphp.cn All rights reserved.
    // +----------------------------------------------------------------------
    // | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
    // +----------------------------------------------------------------------
    // | Author: liu21st <liu21st@gmail.com>
    // +----------------------------------------------------------------------
    namespace Think\Cache\Driver;
    
    use Think\Cache;
    defined('THINK_PATH') or exit();
    
    /**
     * Memcache缓存驱动
     */
    class Memcache extends Cache
    {
    
        /**
         * 架构函数
         * 
         * @param array $options
         *            缓存参数
         * @access public
         */
        function __construct($options = array())
        {
            if (! extension_loaded('memcache')) {
                E(L('_NOT_SUPPORT_') . ':memcache');
            }
            
            $options = array_merge(array(
                'host' => C('MEMCACHE_HOST') ?  : '127.0.0.1',
                'port' => C('MEMCACHE_PORT') ?  : 11211,
                'timeout' => C('DATA_CACHE_TIMEOUT') ?  : false,
                'persistent' => false
            ), $options);
            
            $this->options = $options;
            $this->options['expire'] = isset($options['expire']) ? $options['expire'] : C('DATA_CACHE_TIME');
            $this->options['prefix'] = isset($options['prefix']) ? $options['prefix'] : C('DATA_CACHE_PREFIX');
            $this->options['length'] = isset($options['length']) ? $options['length'] : 0;
            $func = $options['persistent'] ? 'pconnect' : 'connect';
            $this->handler = new \Memcache();
            $options['timeout'] === false ? $this->handler->$func($options['host'], $options['port']) : $this->handler->$func($options['host'], $options['port'], $options['timeout']);
        }
    
        /**
         * 读取缓存
         * 
         * @access public
         * @param string $name
         *            缓存变量名
         * @return mixed
         */
        public function get($name)
        {
            N('cache_read', 1);
            return $this->handler->get($this->options['prefix'] . $name);
        }
    
        /**
         * 写入缓存
         * 
         * @access public
         * @param string $name
         *            缓存变量名
         * @param mixed $value
         *            存储数据
         * @param integer $expire
         *            有效时间(秒)
         * @return boolean
         */
        public function set($name, $value, $expire = null)
        {
            N('cache_write', 1);
            if (is_null($expire)) {
                $expire = $this->options['expire'];
            }
            $name = $this->options['prefix'] . $name;
            if ($this->handler->set($name, $value, 0, $expire)) {
                if ($this->options['length'] > 0) {
                    // 记录缓存队列
                    $this->queue($name);
                } 
                return true;
            } 
            return false;
        }
    
        /**
         * 删除缓存
         * 
         * @access public
         * @param string $name
         *            缓存变量名
         * @return boolean
         */
        public function rm($name, $ttl = false)
        {
            $name = $this->options['prefix'] . $name;
            return $ttl === false ? $this->handler->delete($name) : $this->handler->delete($name, $ttl);
        }
    
        /**
         * 清除缓存
         * 
         * @access public
         * @return boolean
         */
        public function clear()
        {
            return $this->handler->flush();
        }
    }
  • 相关阅读:
    解惑开源项目协作流程
    结合webpack 一步一步实现懒加载的国际化简易版方案
    SEO优化之——hreflang(多语言网站优化)
    pandas数据分析常用
    多任务: 多进程与多线程
    linux基础知识
    python常用模块之sys, os, random
    递归函数(初级难点)
    内置函数
    函数
  • 原文地址:https://www.cnblogs.com/kingchou/p/7262110.html
Copyright © 2020-2023  润新知