org.codehaus.cake.cache.policy.paging.MRUReplacementPolicy Maven / Gradle / Ivy
/*
* Copyright 2008 Kasper Nielsen.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://cake.codehaus.org/LICENSE
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
package org.codehaus.cake.cache.policy.paging;
import org.codehaus.cake.cache.CacheEntry;
import org.codehaus.cake.cache.policy.spi.AbstractDoubleLinkedReplacementPolicy;
/**
* A MRU (Most Recently Used) replacement policy.
*
* @author Kasper Nielsen
* @version $Id: MRUPolicy.java 536 2007-12-30 00:14:25Z kasper $
* @param
* the type of keys maintained by the cache
* @param
* the type of values maintained by the cache
*/
public class MRUReplacementPolicy extends AbstractDoubleLinkedReplacementPolicy {
/** A unique policy name. */
public static final String NAME = "MRU";
/** {@inheritDoc} */
public boolean add(CacheEntry entry) {
addFirst(entry);
return true;
}
/** {@inheritDoc} */
@Override
public void touch(CacheEntry entry) {
moveFirst(entry);
}
/** {@inheritDoc} */
public CacheEntry evictNext() {
return removeFirst();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy