Package org.apache.stratum.jcs.auxiliary.disk.indexed.behavior

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


     * @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

Related Classes of org.apache.stratum.jcs.auxiliary.disk.indexed.behavior.IIndexedDiskCacheAttributes

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.