• 大小: 3.97MB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2023-09-18
  • 语言: Java
  • 标签: java  缓存  cache  lru  

资源简介

java 缓存 cache lru 实例 java 缓存 cache lru 实例 java 缓存 cache lru 实例 java 缓存 cache lru 实例 java 缓存 cache lru 实例 java 缓存 cache lru 实例 java 缓存 cache lru 实例

资源截图

代码片段和文件信息

package org.shiftone.cache;



/**
 * Interface Cache
 *
 *
 * @author Jeff Drost
 * @version $Revision: 1.8 $
 */
public interface Cache
{

    /**
     * adds an object to the cache
     */
    void addobject(object userKey object cacheobject);


    /**
     * gets the value stored in the cache by it‘s key
     * or null if the key is not found.
     */
    object getobject(object key);


    /**
     * The number of key/value pares in the cache
     */
    int size();


    /**
     * remove a specific key/value pair from the cache
     */
    void remove(object key);


    /**
     * Removes ALL keys and values from the cache.
     * Use with digression.  Using this method too frequently
     * may defeat the purpose of caching.
     */
    void clear();
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件       1072  2010-01-14 17:36  Cache\.classpath

     文件        381  2010-01-14 17:36  Cache\.project

     文件        342  2004-02-27 11:29  Cache\benchmark.bat

     文件       2346  2010-01-14 17:36  Cache\bin\org\shiftone\cache\adaptor\CacheMap.class

     文件       3228  2010-01-14 17:36  Cache\bin\org\shiftone\cache\adaptor\EHCacheCache.class

     文件       1628  2010-01-14 17:36  Cache\bin\org\shiftone\cache\adaptor\HibernateCache.class

     文件       1726  2010-01-14 17:36  Cache\bin\org\shiftone\cache\adaptor\HibernateCacheProvider.class

     文件       2563  2010-01-14 17:36  Cache\bin\org\shiftone\cache\adaptor\JcsCache.class

     文件       1638  2010-01-14 17:36  Cache\bin\org\shiftone\cache\adaptor\MapCache.class

     文件       2120  2010-01-14 17:36  Cache\bin\org\shiftone\cache\adaptor\OroCache.class

     文件       1954  2010-01-14 17:36  Cache\bin\org\shiftone\cache\adaptor\OroCacheFactory.class

     文件         46  2003-12-15 00:44  Cache\bin\org\shiftone\cache\adaptor\package.html

     文件       1870  2010-01-14 17:36  Cache\bin\org\shiftone\cache\adaptor\SwarmCache.class

     文件        317  2010-01-14 17:36  Cache\bin\org\shiftone\cache\Cache.class

     文件       3694  2004-02-07 11:46  Cache\bin\org\shiftone\cache\cache.properties

     文件       5221  2010-01-14 17:36  Cache\bin\org\shiftone\cache\CacheConfiguration.class

     文件       1437  2010-01-14 17:36  Cache\bin\org\shiftone\cache\CacheException.class

     文件        197  2010-01-14 17:36  Cache\bin\org\shiftone\cache\CacheFactory.class

     文件       1472  2010-01-14 17:36  Cache\bin\org\shiftone\cache\CacheProxy.class

     文件       4089  2010-01-14 17:36  Cache\bin\org\shiftone\cache\config\BeanWrapper.class

     文件       5363  2010-01-14 17:36  Cache\bin\org\shiftone\cache\config\ConfigurationInternals.class

     文件       4388  2010-01-14 17:36  Cache\bin\org\shiftone\cache\config\Node.class

     文件       3764  2010-01-14 17:36  Cache\bin\org\shiftone\cache\config\PropertiesTree.class

     文件        709  2010-01-14 17:36  Cache\bin\org\shiftone\cache\ConfigurationException.class

     文件       1041  2010-01-14 17:36  Cache\bin\org\shiftone\cache\decorator\cluster\ClearNotification.class

     文件       2086  2010-01-14 17:36  Cache\bin\org\shiftone\cache\decorator\cluster\ClusterBus.class

     文件       2161  2010-01-14 17:36  Cache\bin\org\shiftone\cache\decorator\cluster\ClusterCache.class

     文件       4977  2010-01-14 17:36  Cache\bin\org\shiftone\cache\decorator\cluster\ClusterCacheFactory.class

     文件       2289  2010-01-14 17:36  Cache\bin\org\shiftone\cache\decorator\cluster\ClusterConsumer.class

     文件       1825  2010-01-14 17:36  Cache\bin\org\shiftone\cache\decorator\cluster\ClusterTestCase.class

............此处省略276个文件信息

评论

共有 条评论