Package org.infinispan.lucene.impl

Examples of org.infinispan.lucene.impl.DirectoryBuilderImpl


     * @param chunksCache cache containing the bulk of the index; this is the larger part of data
     * @param distLocksCache cache to store locks; should be replicated and not using a persistent CacheStore
     * @param indexName identifies the index; you can store different indexes in the same set of caches using different identifiers
     */
    public static BuildContext newDirectoryInstance(Cache<?, ?> metadataCache, Cache<?, ?> chunksCache, Cache<?, ?> distLocksCache, String indexName) {
        return new DirectoryBuilderImpl(metadataCache, chunksCache, distLocksCache, indexName);
    }
View Full Code Here


     * @param chunksCache cache containing the bulk of the index; this is the larger part of data
     * @param distLocksCache cache to store locks; should be replicated and not using a persistent CacheStore
     * @param indexName identifies the index; you can store different indexes in the same set of caches using different identifiers
     */
    public static BuildContext newDirectoryInstance(Cache<?, ?> metadataCache, Cache<?, ?> chunksCache, Cache<?, ?> distLocksCache, String indexName) {
        return new DirectoryBuilderImpl(metadataCache, chunksCache, distLocksCache, indexName);
    }
View Full Code Here

     * @param chunksCache cache containing the bulk of the index; this is the larger part of data
     * @param distLocksCache cache to store locks; should be replicated and not using a persistent CacheStore
     * @param indexName identifies the index; you can store different indexes in the same set of caches using different identifiers
     */
    public static BuildContext newDirectoryInstance(Cache<?, ?> metadataCache, Cache<?, ?> chunksCache, Cache<?, ?> distLocksCache, String indexName) {
        return new DirectoryBuilderImpl(metadataCache, chunksCache, distLocksCache, indexName);
    }
View Full Code Here

     * @param chunksCache cache containing the bulk of the index; this is the larger part of data
     * @param distLocksCache cache to store locks; should be replicated and not using a persistent CacheStore
     * @param indexName identifies the index; you can store different indexes in the same set of caches using different identifiers
     */
    public static BuildContext newDirectoryInstance(Cache<?, ?> metadataCache, Cache<?, ?> chunksCache, Cache<?, ?> distLocksCache, String indexName) {
        return new DirectoryBuilderImpl(metadataCache, chunksCache, distLocksCache, indexName);
    }
View Full Code Here

TOP

Related Classes of org.infinispan.lucene.impl.DirectoryBuilderImpl

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.