Package org.apache.jackrabbit.oak.plugins.mongomk

Examples of org.apache.jackrabbit.oak.plugins.mongomk.MongoNodeStore


        super(settings);
    }

    @Override
    protected Repository createRepository(MongoConnection connection) {
        MongoNodeStore store = new MongoMK.Builder().setClusterId(1).
                memoryCacheSize(64 * 1024 * 1024).
                setMongoDB(connection.getDB()).getNodeStore();
        return new Jcr(store).createRepository();
    }
View Full Code Here

TOP

Related Classes of org.apache.jackrabbit.oak.plugins.mongomk.MongoNodeStore

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.