Package org.boxsql.cache

Examples of org.boxsql.cache.CacheValue


    private CacheDecorator() {
//     OK, Don't allow create a instance.
    }
   
    public static void addToCache(final String key, final String value){
        final CacheValue cacheValue = new CacheValue();
        cacheValue.setKey(key);
        cacheValue.setValue(value);
       
//        Clearing cache when it is full
        if(cache.size() == 60)
          cache.clear();
       
View Full Code Here


        return cached;
    }
   
   
    public static String getCachedValue(final String chave){
        CacheValue cacheValue = new CacheValue();
        cacheValue = cache.get(chave);
        return cacheValue.getValue();
    }
View Full Code Here

TOP

Related Classes of org.boxsql.cache.CacheValue

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.