2017 © Pedro Peláez
 

library fusion-cache

Memory+File hybrid cache

image

koriym/fusion-cache

Memory+File hybrid cache

  • Sunday, January 26, 2014
  • by koriym
  • Repository
  • 2 Watchers
  • 2 Stars
  • 1,282 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 3 Versions
  • 0 % Grown

The README.md

Fusion Cache

Memory+File hybrid cache system

Webサーバーリスタート等で消去されてしまう揮発性のメモリキャッシュと、永続可能なファイルキャッシュ等タイプの違うキャッシュを混ぜて使用するキャッシュです。 コンストラクタでプライマリーキャッシュとセカンダリーキャッシュの取得クロージャを指定します。, (*1)

<?php

use Koriym\FusionCache\DoctrineCache as FusionCache;
use Doctrine\Common\Cache\ApcCache;
use Doctrine\Common\Cache\FilesystemCache;

$cache = new FusionCache(new ApcCache, function () {return new FilesystemCache(sys_get_temp_dir());});
$data = $cache->fetch('cache_key')

Requirements

The Versions

26/01 2014

dev-master

9999999-dev https://github.com/koriym/Koriym.FusionCache

Memory+File hybrid cache

  Sources   Download

BSD-3-Clause

The Requires

 

cache doctrine

26/01 2014

dev-develop

dev-develop https://github.com/koriym/Koriym.FusionCache

Memory+File hybrid cache

  Sources   Download

BSD-3-Clause

The Requires

 

cache doctrine

26/01 2014

0.1.0

0.1.0.0 https://github.com/koriym/Koriym.FusionCache

Memory+File hybrid cache

  Sources   Download

BSD-3-Clause

The Requires

 

cache doctrine