nonstrictreadwritecache.java

来自「用Java实现的23个常用设计模式源代码」· Java 代码 · 共 132 行

JAVA
132
字号
//$Id: NonstrictReadWriteCache.java,v 1.3.2.11 2003/11/16 09:20:27 oneovthafew Exp $
package net.sf.hibernate.cache;

import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;

/**
 * Caches data that is sometimes updated without ever locking the cache. 
 * This concurrency strategy makes no guarantee that the item returned 
 * is the latest version available in the database. Configure your
 * cache timeout accordingly! This is an "asynchronous" concurrency 
 * strategy.
 * 
 * @see ReadWriteCache for a much stricter algorithm
 * @author Gavin King
 */
public class NonstrictReadWriteCache implements CacheConcurrencyStrategy {
	
	private Cache cache;
	
	private static final Log log = LogFactory.getLog(ReadWriteCache.class);
	
	public NonstrictReadWriteCache() {}
	
	public void setCache(Cache cache) {
		this.cache=cache;
	}

	/**
	 * Get the most recent version, if available.
	 */
	public Object get(Object key, long txTimestamp) throws CacheException {
		if ( log.isDebugEnabled() ) log.debug("Cache lookup: " + key);
		
		Object result = cache.get(key);
		if ( result!=null ) {
			log.debug("Cache hit");
		}
		else {
			log.debug("Cache miss");
		}
		return result;
	}
	
	/**
	 * Add an item to the cache.
	 */
	public boolean put(Object key, Object value, long txTimestamp)
		throws CacheException {
		if ( log.isDebugEnabled() ) log.debug("Updating: " + key);
		
		cache.put(key, value);
		return true;
		
	}
	
	/**
	 * Do nothing.
	 * @return null, no lock
	 */
	public SoftLock lock(Object key) throws CacheException {
		return null;
	}
	
	public void remove(Object key) throws CacheException {
		if ( log.isDebugEnabled() ) log.debug("Removing: " + key);
		cache.remove(key);
	}

	public void clear() throws CacheException {
		if ( log.isDebugEnabled() ) log.debug("Clearing");
		cache.clear();
	}

	public void destroy() {
		try {
			cache.destroy();
		}
		catch (Exception e) {
			log.warn("could not destroy cache", e);
		}
	}
	
	/**
	 * Invalidate the item
	 */
	public void evict(Object key) throws CacheException {
		if ( log.isDebugEnabled() ) log.debug("Invalidating: " + key);
		
		cache.remove(key);
	}

	/**
	 * Invalidate the item
	 */
	public void update(Object key, Object value) throws CacheException {
		evict(key);
	}

	/**
	 * Do nothing.
	 */
	public void insert(Object key, Object value) throws CacheException {
	}

	/**
	 * Invalidate the item (again, for safety).
	 */
	public void release(Object key, SoftLock lock) throws CacheException {
		if ( log.isDebugEnabled() ) log.debug("Invalidating (again): " + key);
		
		cache.remove(key);
	}

	/**
	 * Invalidate the item (again, for safety).
	 */
	public void afterUpdate(Object key, Object value, SoftLock lock) throws CacheException {
		release(key, lock);
	}
	
	/**
	 * Do nothing.
	 */
	public void afterInsert(Object key, Object value) throws CacheException {
		//if ( log.isDebugEnabled() ) log.debug("Adding new: " + key);
		
		//cache.put(key, value);
	}

}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?