Skip to content

Latest commit

 

History

History
38 lines (27 loc) · 765 Bytes

File metadata and controls

38 lines (27 loc) · 765 Bytes

marko/cache-array

In-memory cache driver — stores data for the duration of a single request with zero I/O overhead.

Installation

composer require marko/cache-array

Quick Example

use Marko\Cache\Contracts\CacheInterface;

class ExpensiveService
{
    public function __construct(
        private CacheInterface $cache,
    ) {}

    public function compute(string $key): array
    {
        if ($this->cache->has($key)) {
            return $this->cache->get($key);
        }

        $result = $this->doExpensiveWork($key);
        $this->cache->set($key, $result);

        return $result;
    }
}

Documentation

Full usage, API reference, and examples: marko/cache-array