当前位置:首页 > PHP教程 > php高级应用 > 列表

PHP缓存集成库phpFastCache用法

发布:smiling 来源: PHP粉丝网  添加日期:2021-05-03 16:16:57 浏览: 评论:0 

这篇文章主要介绍了PHP缓存集成库phpFastCache用法,包括基本用法的分析与操作实例,在PHP项目开发中非常具有实用价值,需要的朋友可以参考下

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

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

代码如下:

  1. <?php 
  2. // In your config file 
  3. include("phpfastcache/phpfastcache.php"); 
  4. phpFastCache::setup("storage","auto"); 
  5. // phpFastCache support "apc", "memcache", "memcached", "wincache" ,"files", "sqlite" and "xcache" 
  6. // You don't need to change your code when you change your caching system. Or simple keep it auto 
  7. $cache = phpFastCache(); 
  8.  
  9. // In your Class, Functions, PHP Pages 
  10. // try to get from Cache first. product_page = YOUR Identity Keyword 
  11. $products = $cache->get("product_page"); 
  12.  
  13. if($products == null) { 
  14.     $products = YOUR DB QUERIES || GET_PRODUCTS_FUNCTION; 
  15.     // set products in to cache in 600 seconds = 10 minutes 
  16.     $cache->set("product_page"$products,600); 
  17.  
  18. // Output Your Contents $products HERE 

提高cURL和API调用性能,代码如下:

  1. <?php 
  2. include("phpfastcache/phpfastcache.php"); 
  3. $cache = phpFastCache("memcached"); 
  4.  
  5. // try to get from Cache first. 
  6. $results = $cache->get("identity_keyword"
  7.  
  8. if($results == null) { 
  9.     $results = cURL->get("http://www.youtube.com/api/json/url/keyword/page"); 
  10.     // Write to Cache Save API Calls next time 
  11.     $cache->set("identity_keyword"$results, 3600*24); 
  12.  
  13. foreach($results as $video) { 
  14.     // Output Your Contents HERE 

全页缓存,代码如下:

  1. <?php 
  2. // use Files Cache for Whole Page / Widget 
  3. // keyword = Webpage_URL 
  4. $keyword_webpage = md5($_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI'].$_SERVER['QUERY_STRING']); 
  5. $html = __c("files")->get($keyword_webpage); 
  6.  
  7. if($html == null) { 
  8.     ob_start(); 
  9.     /* 
  10.         ALL OF YOUR CODE GO HERE 
  11.         RENDER YOUR PAGE, DB QUERY, WHATEVER 
  12.     */ 
  13.  
  14.     // GET HTML WEBPAGE 
  15.     $html = ob_get_contents(); 
  16.     // Save to Cache 30 minutes 
  17.     __c("files")->set($keyword_webpage,$html, 1800); 
  18.  
  19. echo $html

挂件缓存,代码如下:

  1. <?php 
  2. // use Files Cache for Whole Page / Widget 
  3. $cache = phpFastCache("files"); 
  4. $html = $cache->widget_1; 
  5.  
  6. if($html == null) { 
  7.     $html = Render Your Page || Widget || "Hello World"
  8.     // Save to Cache 30 minutes 
  9.     $cache->widget_1 = array($html, 1800); 
  10.  
  11. echo or return your $html

同时使用多种缓存,代码如下:

  1. <?php 
  2. // in your config files 
  3. include("phpfastcache/phpfastcache.php"); 
  4. // auto | memcache | files ...etc. Will be default for $cache = __c(); 
  5. phpFastCache::$storage = "auto"
  6. $cache1 = phpFastCache(); 
  7.  
  8. $cache2 = __c("memcache"); 
  9. $server = array(array("127.0.0.1",11211,100), array("128.5.1.3",11215,80)); 
  10. $cache2->option("server"$server); 
  11.  
  12. $cache3 = new phpFastCache("apc"); 
  13.  
  14. // How to Write? 
  15. $cache1->set("keyword1""string|number|array|object", 300); 
  16. $cache2->keyword2 = array("something here", 600); 
  17. __c()->keyword3 = array("array|object", 3600*24); 
  18.  
  19. // How to Read? 
  20. $data = $cache1->get("keyword1"); 
  21. $data = $cache2->keyword2; 
  22. $data = __c()->keyword3; 
  23. $data = __c()->get("keyword4"); 
  24.  
  25. // Free to Travel between any caching methods 
  26.  
  27. $cache1 = phpFastCache("files"); 
  28. $cache1->set("keyword1"$value$time); 
  29. $cache1->memcache->set("keyword1"$value$time); 
  30. $cache1->apc->set("whatever"$value, 300); 
  31.  
  32. $cache2 = __c("apc"); 
  33. $cache2->keyword1 = array("so cool", 300); 
  34. $cache2->files->keyword1 = array("Oh yeah!", 600); 
  35.  
  36. $data = __c("memcache")->get("keyword1"); 
  37. $data = __c("files")->get("keyword2"); 
  38. $data = __c()->keyword3; 
  39.  
  40. // Multiple ? No Problem 
  41.  
  42. $list = $cache1->getMulti(array("key1","key2","key3")); 
  43. $cache2->setMulti(array("key1","value1", 300), 
  44.                   array("key2","value2", 600), 
  45.                   array("key3","value3", 1800), 
  46.                   ); 
  47.  
  48. $list = $cache1->apc->getMulti(array("key1","key2","key3")); 
  49. __c()->memcache->getMulti(array("a","b","c")); 
  50.  
  51. // want more? Check out document in source code 

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

Tags: PHP缓存集成库 phpFastCache

分享到:

相关文章