PHP缓存集成库phpFastCache用法


Posted in PHP onDecember 15, 2014

本文实例讲述了PHP缓存集成库phpFastCache用法。分享给大家供大家参考。具体分析如下:

phpFastCache是一个开源的PHP缓存库,只提供一个简单的PHP文件,可方便集成到已有项目,支持多种缓存方法,包括:apc, memcache, memcached, wincache, files, pdo and mpdo。可通过简单的API来定义缓存的有效时间。

<?php

// In your config file

include("phpfastcache/phpfastcache.php");

phpFastCache::setup("storage","auto");
// phpFastCache support "apc", "memcache", "memcached", "wincache" ,"files", "sqlite" and "xcache"

// You don't need to change your code when you change your caching system. Or simple keep it auto

$cache = phpFastCache();
// In your Class, Functions, PHP Pages

// try to get from Cache first. product_page = YOUR Identity Keyword

$products = $cache->get("product_page");
if($products == null) {

    $products = YOUR DB QUERIES || GET_PRODUCTS_FUNCTION;

    // set products in to cache in 600 seconds = 10 minutes

    $cache->set("product_page", $products,600);

}
// Output Your Contents $products HERE

提高cURL和API调用性能
<?php

include("phpfastcache/phpfastcache.php");
$cache = phpFastCache("memcached");
// try to get from Cache first.

$results = $cache->get("identity_keyword")
if($results == null) {

    $results = cURL->get("http://www.youtube.com/api/json/url/keyword/page");

    // Write to Cache Save API Calls next time

    $cache->set("identity_keyword", $results, 3600*24);

}
foreach($results as $video) {

    // Output Your Contents HERE

}

全页缓存

<?php

// use Files Cache for Whole Page / Widget
// keyword = Webpage_URL

$keyword_webpage = md5($_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI'].$_SERVER['QUERY_STRING']);

$html = __c("files")->get($keyword_webpage);
if($html == null) {

    ob_start();

    /*

        ALL OF YOUR CODE GO HERE

        RENDER YOUR PAGE, DB QUERY, WHATEVER

    */
    // GET HTML WEBPAGE

    $html = ob_get_contents();

    // Save to Cache 30 minutes

    __c("files")->set($keyword_webpage,$html, 1800);

}
echo $html;

挂件缓存

<?php

// use Files Cache for Whole Page / Widget

$cache = phpFastCache("files");
$html = $cache->widget_1;
if($html == null) {

    $html = Render Your Page || Widget || "Hello World";

    // Save to Cache 30 minutes

    $cache->widget_1 = array($html, 1800);

}
echo or return your $html;

同时使用多种缓存

<?php

// in your config files

include("phpfastcache/phpfastcache.php");

// auto | memcache | files ...etc. Will be default for $cache = __c();

phpFastCache::$storage = "auto";
$cache1 = phpFastCache();
$cache2 = __c("memcache");

$server = array(array("127.0.0.1",11211,100), array("128.5.1.3",11215,80));

$cache2->option("server", $server);
$cache3 = new phpFastCache("apc");
// How to Write?

$cache1->set("keyword1", "string|number|array|object", 300);

$cache2->keyword2 = array("something here", 600);

__c()->keyword3 = array("array|object", 3600*24);
// How to Read?

$data = $cache1->get("keyword1");

$data = $cache2->keyword2;

$data = __c()->keyword3;

$data = __c()->get("keyword4");
// Free to Travel between any caching methods
$cache1 = phpFastCache("files");

$cache1->set("keyword1", $value, $time);

$cache1->memcache->set("keyword1", $value, $time);

$cache1->apc->set("whatever", $value, 300);
$cache2 = __c("apc");

$cache2->keyword1 = array("so cool", 300);

$cache2->files->keyword1 = array("Oh yeah!", 600);
$data = __c("memcache")->get("keyword1");

$data = __c("files")->get("keyword2");

$data = __c()->keyword3;
// Multiple ? No Problem
$list = $cache1->getMulti(array("key1","key2","key3"));

$cache2->setMulti(array("key1","value1", 300),

                  array("key2","value2", 600),

                  array("key3","value3", 1800),

                  );
$list = $cache1->apc->getMulti(array("key1","key2","key3"));

__c()->memcache->getMulti(array("a","b","c"));
// want more? Check out document in source code

希望本文所述对大家的PHP程序设计有所帮助。

PHP 相关文章推荐
php快速url重写更新版[需php 5.30以上]
Apr 25 PHP
解析mysql 表中的碎片产生原因以及清理
Jun 22 PHP
解析如何通过PHP函数获取当前运行的环境 来进行判断执行逻辑(小技巧)
Jun 25 PHP
ThinkPHP的cookie和session冲突造成Cookie不能使用的解决方法
Jul 01 PHP
PHP批量生成图片缩略图的方法
Jun 18 PHP
PHP合并数组+号和array_merge的区别
Jun 25 PHP
在CentOS系统上从零开始搭建WordPress博客的全流程记录
Apr 21 PHP
浅谈PHP中pack、unpack的详细用法
Mar 12 PHP
PHP实现的CURL非阻塞调用类
Jul 26 PHP
PHP PDOStatement::execute讲解
Jan 31 PHP
php中的依赖注入实例详解
Aug 14 PHP
Laravel基础_关于view共享数据的示例讲解
Oct 14 PHP
php图片的二进制转换实现方法
Dec 15 #PHP
php第一次无法获取cookie问题处理
Dec 15 #PHP
php_imagick实现图片剪切、旋转、锐化、减色或增加特效的方法
Dec 15 #PHP
php实现按指定大小等比缩放生成上传图片缩略图的方法
Dec 15 #PHP
php实现可用于mysql,mssql,pg数据库操作类
Dec 13 #PHP
PHP中Memcache操作类及用法实例
Dec 12 #PHP
PHP实现PDO的mysql数据库操作类
Dec 12 #PHP
You might like
php使用websocket示例详解
2014/03/12 PHP
PHP操作MySQL事务实例
2014/11/05 PHP
php找出指定范围内回文数且平方根也是回文数的方法
2015/03/23 PHP
Symfony学习十分钟入门经典教程
2016/02/03 PHP
让Laravel API永远返回JSON格式响应的方法示例
2018/09/05 PHP
JS模拟的QQ面板上的多级可展开的菜单
2009/10/10 Javascript
ASP.NET jQuery 实例11 通过使用jQuery validation插件简单实现用户登录页面验证功能
2012/02/03 Javascript
使用mini-define实现前端代码的模块化管理
2014/12/25 Javascript
JavaScript DOM基础
2015/04/13 Javascript
JS实现样式清新的横排下拉菜单效果
2015/10/09 Javascript
完美解决IE不支持Data.parse()的问题
2016/11/24 Javascript
利用Plupload.js解决大文件上传问题, 带进度条和背景遮罩层
2017/03/15 Javascript
jQuery Ajax前后端使用JSON进行交互示例
2017/03/17 Javascript
Vue组件化通讯的实例代码
2017/06/23 Javascript
express如何使用session与cookie的方法
2018/01/30 Javascript
详解vue 数据传递的方法
2018/04/19 Javascript
在Vue环境下利用worker运行interval计时器的步骤
2019/08/01 Javascript
世界上最短的数字判断js代码
2019/09/09 Javascript
vue keep-alive 动态删除组件缓存的例子
2019/11/04 Javascript
微信小程序利用for循环解决内容变更问题
2020/03/05 Javascript
原生js实现的金山打字小游戏(实例代码详解)
2020/03/16 Javascript
vue-quill-editor的使用及个性化定制操作
2020/08/04 Javascript
对TensorFlow中的variables_to_restore函数详解
2018/07/30 Python
计算机二级python学习教程(2) python语言基本语法元素
2019/05/16 Python
python hough变换检测直线的实现方法
2019/07/12 Python
Python爬取视频(其实是一篇福利)过程解析
2019/08/01 Python
50行Python代码实现视频中物体颜色识别和跟踪(必须以红色为例)
2019/11/20 Python
keras的三种模型实现与区别说明
2020/07/03 Python
python如何修改文件时间属性
2021/02/05 Python
CSS3制作酷炫的三维相册效果
2016/07/01 HTML / CSS
Lookfantastic日本官网:英国知名护肤、化妆品和头发护理购物网站
2018/04/21 全球购物
迷你分体式空调:SoGoodToBuy
2018/08/07 全球购物
马来西亚太阳镜、眼镜和隐形眼镜网上商店:Focus Point
2018/12/13 全球购物
十一酒店活动方案
2014/02/20 职场文书
学生期末评语大全
2014/04/30 职场文书
建国70周年的心得体会(2篇)
2019/09/20 职场文书