Examples of VersionedMap


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

//
//        Size of [2000000] entries is 77.6mb

    public static void main(String[] args) throws Exception {
        String type = args.length > 0 ? args[0] : "nb";
        VersionedMap versionedMap;
        if ("nb".equalsIgnoreCase(type)) {
            versionedMap = new ConcurrentVersionedMapLong();
        } else if ("native".equalsIgnoreCase(type)) {
            versionedMap = new NativeVersionedMap();
        } else if ("concurrent".equalsIgnoreCase(type)) {
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.