Examples of BTreePersistentIndexedCache


Examples of org.gradle.cache.btree.BTreePersistentIndexedCache

    @Test
    public void closesIndexedCacheOnClose() {
        TestFile dir = tmpDir.getDir().file("dir");
        DefaultPersistentDirectoryCache cache = new DefaultPersistentDirectoryCache(dir, CacheUsage.ON, properties);
       
        BTreePersistentIndexedCache indexedCache = cache.openIndexedCache();
        assertTrue(indexedCache.isOpen());

        cache.close();
        assertFalse(indexedCache.isOpen());
    }
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.