overdesign/psr-cache

File cache implementation using PSR6

1.1.2 2017-12-27 23:08 UTC

This package is auto-updated.

Last update: 2024-04-26 02:26:47 UTC


README

Build Status codecov Scrutinizer Code Quality

PSR-6 Compilant File Cache

This is a basic PSR-6 implementation of cache using the filesystem

Installation

Install using composer

composer require overdesign/psr-cache

Usage

Basic example

<?php
use Overdesign\PsrCache\FileCacheDriver;

$cacheDir = __DIR__ . '/cache';

$cache = new FileCacheDriver($cacheDir);

$item = $cache->getItem('myItem');

if ($item->isHit()) {
    echo 'Item found in cache';
    var_dump($item->get());
} else {
    $item->set('my data');
    $item->expiresAfter(120); // Expire in 2 min
    
    $cache->save($item);
}

Garbage collector

The drivers only deletes expired files when you try to recover them explicitly.

In order to clean the cache files you have three methods.

clear() Deletes all the items in the current pool

clearExpired() Deletes all the expired items in the pool

gc() Acts as a garbage collector

It's not recommended to call the gc() method within the normal user flow operation as it can be a high time consuming operation. The ideal option is to set a cron to call the gc() method.

You can pass various options to the method, see the phpdoc to know more about that options.

TODO