Package org.apache.jackrabbit.oak.plugins.segment

Examples of org.apache.jackrabbit.oak.plugins.segment.SegmentCache


        journals.put("root", new MongoJournal(
                this, db.getCollection("journals"), concern, EMPTY_NODE));
    }

    public MongoStore(DB db, long cacheSize) {
        this(db, new SegmentCache(cacheSize));
    }
View Full Code Here


                this, db.getCollection("journals"),
                concern, builder.getNodeState()));
    }

    public MongoStore(DB db, long cacheSize) {
        this(db, new SegmentCache(cacheSize));
    }
View Full Code Here

TOP

Related Classes of org.apache.jackrabbit.oak.plugins.segment.SegmentCache

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.