Package org.apache.commons.collections

Examples of org.apache.commons.collections.LRUMap


        this.dirContext = dirContext;
        if (dirContext instanceof BaseDirContext) {
            // Initialize parameters based on the associated dir context, like
            // the caching policy.
            if (((BaseDirContext) dirContext).isCached()) {
                cache = Collections.synchronizedMap(new LRUMap(cacheSize));
                cacheTTL = ((BaseDirContext) dirContext).getCacheTTL();
                cacheObjectMaxSize =
                    ((BaseDirContext) dirContext).getCacheObjectMaxSize();
            }
        }
View Full Code Here


        this.dirContext = dirContext;
        if (dirContext instanceof BaseDirContext) {
            // Initialize parameters based on the associated dir context, like
            // the caching policy.
            if (((BaseDirContext) dirContext).isCached()) {
                cache = Collections.synchronizedMap(new LRUMap(cacheSize));
                cacheTTL = ((BaseDirContext) dirContext).getCacheTTL();
                cacheObjectMaxSize =
                    ((BaseDirContext) dirContext).getCacheObjectMaxSize();
            }
        }
View Full Code Here

        this.dirContext = dirContext;
        if (dirContext instanceof BaseDirContext) {
            // Initialize parameters based on the associated dir context, like
            // the caching policy.
            if (((BaseDirContext) dirContext).isCached()) {
                cache = Collections.synchronizedMap(new LRUMap(cacheSize));
                cacheTTL = ((BaseDirContext) dirContext).getCacheTTL();
                cacheObjectMaxSize =
                    ((BaseDirContext) dirContext).getCacheObjectMaxSize();
            }
        }
View Full Code Here

        this.dirContext = dirContext;
        if (dirContext instanceof BaseDirContext) {
            // Initialize parameters based on the associated dir context, like
            // the caching policy.
            if (((BaseDirContext) dirContext).isCached()) {
                cache = Collections.synchronizedMap(new LRUMap(cacheSize));
                cacheTTL = ((BaseDirContext) dirContext).getCacheTTL();
                cacheObjectMaxSize =
                    ((BaseDirContext) dirContext).getCacheObjectMaxSize();
            }
        }
View Full Code Here

        this.dirContext = dirContext;
        if (dirContext instanceof BaseDirContext) {
            // Initialize parameters based on the associated dir context, like
            // the caching policy.
            if (((BaseDirContext) dirContext).isCached()) {
                cache = Collections.synchronizedMap(new LRUMap(cacheSize));
                cacheTTL = ((BaseDirContext) dirContext).getCacheTTL();
                cacheObjectMaxSize =
                    ((BaseDirContext) dirContext).getCacheObjectMaxSize();
            }
        }
View Full Code Here

         * @param hardSize the maximum capacity of this map
         */
        public SoftHashMap(final int hardSize)
        {
            hash = new HashMap();
            hardCacheMap = new LRUMap(hardSize);
            queue = new ReferenceQueue();
        }
View Full Code Here

        this.dirContext = dirContext;
        if (dirContext instanceof BaseDirContext) {
            // Initialize parameters based on the associated dir context, like
            // the caching policy.
            if (((BaseDirContext) dirContext).isCached()) {
                cache = Collections.synchronizedMap(new LRUMap(cacheSize));
                cacheTTL = ((BaseDirContext) dirContext).getCacheTTL();
                cacheObjectMaxSize =
                    ((BaseDirContext) dirContext).getCacheObjectMaxSize();
            }
        }
View Full Code Here

         * @param hardSize the maximum capacity of this map
         */
        public SoftHashMap(final int hardSize)
        {
            hash = new HashMap();
            hardCacheMap = new LRUMap(hardSize);
            queue = new ReferenceQueue();
        }
View Full Code Here

TOP

Related Classes of org.apache.commons.collections.LRUMap

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.