Examples of InfinispanDirectory


Examples of org.infinispan.lucene.InfinispanDirectory

    log.debug( "Starting InfinispanDirectory" );
    cacheManager.startCaches( metadataCacheName, dataCacheName, lockingCacheName );
    Cache<?,?> metadataCache = cacheManager.getCache( metadataCacheName );
    Cache<?,?> dataCache = cacheManager.getCache( dataCacheName );
    Cache<?,?> lockingCache = cacheManager.getCache( lockingCacheName );
    directory = new InfinispanDirectory( metadataCache, dataCache, lockingCache, directoryProviderName, chunkSize );
    DirectoryProviderHelper.initializeIndexIfNeeded( directory );
    log.debugf( "Initialized Infinispan index: '%s'", directoryProviderName );
  }
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.