nickolasburr/ocache.php

PSR-16 object cache for PHP.

1.1.0 2025-02-26 01:36 UTC

This package is auto-updated.

Last update: 2025-03-04 03:57:54 UTC


README

Description

PSR-16 object cache for PHP.

Installation

composer require nickolasburr/ocache.php:^1.0

Examples

...

use function Ocache\cache;

$cache = cache();
$entry = $cache->get('example');

if ($entry === null) {
    $entry = new \ArrayIterator(range(0, 10));
    $cache->set('example', $entry);
}

...