zoukankan      html  css  js  c++  java
  • zend cache使用

    require_once 'Zend/Cache.php';//引用文件
    $frontendOptions = array(
    'lifeTime' => 60, // cache lifetime
    'automatic_serialization' => true
    );
    $backendOptions = array(
    'cache_dir' => PUBLIC_PATH.'/tmp/' // Directory where to put the cache files
    );
    // 取得一个Zend_Cache_Core 对象
    $cache = Zend_Cache::factory('Core', 'File', $frontendOptions, $backendOptions);

    if(!$result = $cache->load('myresult')) {
    $departmentResult = $this->essDeptInfo->getAllDept($this->db);
    $cache->save($departmentResult, 'myresult');//利用zend_cache对象缓存查询出来的结果
    }
  • 相关阅读:
    作业,注册页面
    HTML表单
    用HTML制作简历
    多线程同步标记
    集合类
    多态 接口
    java 泛型讲解
    转型
    使用super关键字
    作业题
  • 原文地址:https://www.cnblogs.com/kobigood/p/6612701.html
Copyright © 2011-2022 走看看