`
sillycat
  • 浏览: 2492167 次
  • 性别: Icon_minigender_1
  • 来自: 成都
社区版块
存档分类
最新评论

cache策略(六)hashmap

    博客分类:
  • JAVA
阅读更多
cache策略(六)hashmap

这个东东还要多测试测试。按照这个接口写出来的。呵呵。

HashMapCache.java 如下:
package com.sillycat.easyview.plugin.cache.hashmap;

import java.util.Collections;
import java.util.HashMap;
import java.util.Map;

import com.sillycat.easyview.plugin.cache.base.Cache;
import com.sillycat.easyview.plugin.cache.base.Timestamper;
import com.sillycat.easyview.plugin.commons.exceptions.CacheException;

/**
* CACHE的内容直接放到HASHMap之中
*/
public class HashMapCache implements Cache {

private final Map hashMap = new HashMap();

private final String regionName;

public HashMapCache(String regionName) {
   this.regionName = regionName;
}

public String getRegionName() {
   return regionName;
}

public Object read(Object key) throws CacheException {
   return hashMap.get(key);
}

public Object get(Object key) throws CacheException {
   return hashMap.get(key);
}

public void update(Object key, Object value) throws CacheException {
   put(key, value);
}

public void put(Object key, Object value) throws CacheException {
   hashMap.put(key, value);
}

public void remove(Object key) throws CacheException {
   hashMap.remove(key);
}

public void clear() throws CacheException {
   hashMap.clear();
}

public void destroy() throws CacheException {
   hashMap.clear();
}

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 hashMap.size();
}

public long getElementCountOnDisk() {
   return 0;
}

public Map toMap() {
   return Collections.unmodifiableMap(hashMap);
}

public String toString() {
   return "HashMapCache(" + regionName + ')';
}

}

HashMapCacheProvider.java 如下:
package com.sillycat.easyview.plugin.cache.hashmap;

import java.util.Properties;

import com.sillycat.easyview.plugin.cache.base.Cache;
import com.sillycat.easyview.plugin.cache.base.CacheProvider;
import com.sillycat.easyview.plugin.cache.base.Timestamper;
import com.sillycat.easyview.plugin.commons.exceptions.CacheException;

public class HashMapCacheProvider implements CacheProvider {

public Cache buildCache(String regionName)
    throws CacheException {
   return new HashMapCache(regionName);
}

public long nextTimestamp() {
   return Timestamper.next();
}

public void start() throws CacheException {
}

public void stop() {
}

public boolean isMinimalPutsEnabledByDefault() {
   return false;
}

public Properties getProperties() throws CacheException {
   return null;
}

}
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics