Helpers\FastCache

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 Helpers\FastCache;

$cache = FastCache::getInstance();

// Use any phpFastCache methods on FastCache instance.

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

相关文章:

  • 2021-10-25
  • 2021-10-08
  • 2022-02-02
  • 2021-12-23
  • 2021-06-05
  • 2021-08-20
  • 2021-08-01
  • 2021-07-27
猜你喜欢
  • 2022-01-24
  • 2021-12-07
  • 2022-02-01
  • 2021-09-13
  • 2022-01-27
  • 2021-07-28
相关资源
相似解决方案