HelpersFastCache

HelpersFastCache

phpFastCache is a high-performance, distributed object caching system, generic in nature, but intended for use in speeding up dynamic web applications by alleviating database load.

FastCache is built on top of phpFastCache. Its usage is very simple:

use HelpersFastCache;

$cache = FastCache::getInstance();

// Use any phpFastCache methods on FastCache instance.

To note that the HelpersFastCache acts like a Decorator for phpFastCache, it can call any phpFastCache method. For full documenation on phpFastCache see the website http://www.phpfastcache.com

原文地址:https://www.cnblogs.com/chunguang/p/5643181.html