Tie::Cache::LRU::LinkedList - Tie::Cache::LRU implemented using a linked list
Contents
Description
This is an implementation of Tie::Cache::LRU using a linked list structure. Theoretically, this is an
efficient algorithm, however it may be lose out in smaller cache sizes (where small <= ??) due to its
relatively high constant.
Name
Tie::Cache::LRU::LinkedList - Tie::Cache::LRU implemented using a linked list
See Also
Tie::Cache::LRU, Tie::Cache::LRU::LinkedList, Tie::Cache::LRU::Virtual, Tie::Cache
perl v5.36.0 2022-08-29 Tie::Cache::LRU::LinkedList(3pm)
Synopsis
use Tie::Cache::LRU::LinkedList;
tie %cache, 'Tie::Cache::LRU', 500;
...the rest is as Tie::Cache::LRU...
