⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 hashtablecache.java

📁 一个Java持久层类库
💻 JAVA
字号:
//$Id: HashtableCache.java 6478 2005-04-21 07:57:19Z oneovthafew $package org.hibernate.cache;import java.util.Collections;import java.util.Hashtable;import java.util.Map;/** * A lightweight implementation of the <tt>Cache</tt> interface * @author Gavin King */public class HashtableCache implements Cache {		private final Map hashtable = new Hashtable();	private final String regionName;		public HashtableCache(String regionName) {		this.regionName = regionName;	}	public String getRegionName() {		return regionName;	}	public Object read(Object key) throws CacheException {		return hashtable.get(key);	}	public Object get(Object key) throws CacheException {		return hashtable.get(key);	}	public void update(Object key, Object value) throws CacheException {		put(key, value);	}		public void put(Object key, Object value) throws CacheException {		hashtable.put(key, value);	}	public void remove(Object key) throws CacheException {		hashtable.remove(key);	}	public void clear() throws CacheException {		hashtable.clear();	}	public void destroy() throws CacheException {	}	public void lock(Object key) throws CacheException {		// local cache, so we use synchronization	}	public void unlock(Object key) throws CacheException {		// local cache, so we use synchronization	}	public long nextTimestamp() {		return Timestamper.next();	}	public int getTimeout() {		return Timestamper.ONE_MS * 60000; //ie. 60 seconds	}	public long getSizeInMemory() {		return -1;	}	public long getElementCountInMemory() {		return hashtable.size();	}	public long getElementCountOnDisk() {		return 0;	}		public Map toMap() {		return Collections.unmodifiableMap(hashtable);	}	public String toString() {		return "HashtableCache(" + regionName + ')';	}}

⌨️ 快捷键说明

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