Examples of IIndexedDiskCacheAttributes


Examples of org.apache.stratum.jcs.auxiliary.disk.indexed.behavior.IIndexedDiskCacheAttributes

     * @return
     * @param iaca
     */
    public ICache createCache( IAuxiliaryCacheAttributes iaca )
    {
        IIndexedDiskCacheAttributes idca = ( IIndexedDiskCacheAttributes ) iaca;
        IndexedDiskCacheManager dcm = IndexedDiskCacheManager.getInstance( idca );
        return dcm.getCache( idca );
    }
View Full Code Here

Examples of org.apache.stratum.jcs.auxiliary.disk.indexed.behavior.IIndexedDiskCacheAttributes

     * @param cacheName Name that will be used when creating attributes.
     * @return A cache.
     */
    public ICache getCache( String cacheName )
    {
        IIndexedDiskCacheAttributes cacheAttributes =
            ( IIndexedDiskCacheAttributes ) defaultCacheAttributes.copy();

        cacheAttributes.setCacheName( cacheName );

        return getCache( cacheAttributes );
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.