Package org.elasticsearch.common.lucene.versioned

Examples of org.elasticsearch.common.lucene.versioned.ConcurrentVersionedMap


        if ("nb".equalsIgnoreCase(type)) {
            versionedMap = new ConcurrentVersionedMapLong();
        } else if ("native".equalsIgnoreCase(type)) {
            versionedMap = new NativeVersionedMap();
        } else if ("concurrent".equalsIgnoreCase(type)) {
            versionedMap = new ConcurrentVersionedMap();
        } else {
            throw new IllegalArgumentException("Type [" + type + "] unknown");
        }
        System.out.println("Running [" + type + "] type");
        VersionedMapBenchmark benchmark = new VersionedMapBenchmark(
View Full Code Here

TOP

Related Classes of org.elasticsearch.common.lucene.versioned.ConcurrentVersionedMap

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.