Help for this page

Select Code to Download


  1. or download this
    package Cache::LRU {
        use Hash::Ordered;
    ...
    
        __PACKAGE__->meta->make_immutable;
    }
    
  2. or download this
    package Cache::LRU {
        use Hash::Ordered;
    ...
            return $self->_cache->set( $key, $self->_cache->delete($key) )
    +;
        }
    }