Package com.thinkaurelius.titan.graphdb.database.cache

Examples of com.thinkaurelius.titan.graphdb.database.cache.ExpirationStoreCache


            Preconditions.checkArgument(cachesize>1000,"Cache size is too small: %s",cachesize);
            cacheSizeBytes = (long)cachesize;
        }
        log.info("Configuring edge store cache size: {}",cacheSizeBytes);

        return new ExpirationStoreCache(expirationTime,
                cacheconf.getLong(DB_CACHE_CLEAN_WAIT_KEY,DB_CACHE_CLEAN_WAIT_DEFAULT),
                cacheSizeBytes);
    }
View Full Code Here

TOP

Related Classes of com.thinkaurelius.titan.graphdb.database.cache.ExpirationStoreCache

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.