Package org.infinispan.lucene

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

Related Classes of org.infinispan.lucene.InfinispanDirectory

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.