cash/lrucache

An efficient memory-based Least Recently Used (LRU) cache

1.0.0 2013-09-20 18:59 UTC

This package is not auto-updated.

Last update: 2024-03-26 04:13:53 UTC


README

Build Status

Implements a non-persistent memory-based Least Recently Used cache.

The keys can be integers or strings. The values can be anything. Because this library uses array(), keys that are strings that contain an integer ("7") are cast to an integer. Therefore, there is no difference between the key "7" and the key 7.

$cache = new LRUCache(10);
$cache->put('line1', 'roses are red');
$cache->put('line2', 'violets are blue');
$line1 = $cache->get('line1');