All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.jdon.util.SimpleCachePool Maven / Gradle / Ivy

package com.jdon.util;

import java.util.Map;
import java.util.concurrent.ConcurrentHashMap;

/**
 * View Source
 *
 * @author  Brian Chan
 * @version $Revision: 1.1.1.1 $
 *
 */
public class SimpleCachePool {

  private static SimpleCachePool _instance;
  private static int _SIZE = 100000;

  private Map _scPool;

   public static Object get(String id) {
      return _getInstance()._get(id);
   }

   public static void put(String id, Object obj) {
      _getInstance()._put(id, obj);
   }

   public static Object remove(String id) {
      return _getInstance()._remove(id);
   }

   private static SimpleCachePool _getInstance() {
      if (_instance == null) {
         synchronized (SimpleCachePool.class) {
            if (_instance == null) {
               _instance = new SimpleCachePool();
            }
         }
      }
      return _instance;
   }

   private SimpleCachePool() {
      _scPool = new ConcurrentHashMap(_SIZE);
   }

   private Object _get(String id) {
      return (Object)_scPool.get(id);
   }

   private void _put(String id, Object ds) {
      _scPool.put(id, ds);
   }

   private Object _remove(String id) {
      return _scPool.remove(id);
   }



}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy