mtoolkit/mtoolkit-cache

MToolkit 框架的缓存模块

0.0.2 2016-06-01 15:55 UTC

This package is not auto-updated.

Last update: 2024-09-14 18:47:38 UTC


README

MToolkit 框架的缓存模块。

缓存类型

  • MySQL
  • 文件
  • APC

用法

以下为支持的各种类型缓存的示例。

MySQL

$cacheManager = MCacheFactoryImpl::getManager(new MCacheConfiguration(
    MCacheType::MYSQL,
    array(
        'db' => new PDO(...),
        'table' => 'mcache'
    )
));

文件

$cacheManager = MCacheFactoryImpl::getManager(new MCacheConfiguration(
    MCacheType::FILE,
    array(
        'path' => '/temp/cache'
    )
));

APC

$cacheManager = MCacheFactoryImpl::getManager(new MCacheConfiguration(
    MCacheType::APC,
    array()
));