Package org.neo4j.unsafe.batchinsert

Examples of org.neo4j.unsafe.batchinsert.SpatialBatchGraphDatabaseService


        if (largeMode != null && largeMode.equalsIgnoreCase("true")) {
            config = LARGE_CONFIG;
        }
        if (useBatchInserter) {
            batchInserter = BatchInserters.inserter(getNeoPath().getAbsolutePath(), config);
            graphDb = new SpatialBatchGraphDatabaseService(batchInserter);
        } else {
            graphDb = new GraphDatabaseFactory().newEmbeddedDatabaseBuilder(getNeoPath().getAbsolutePath()).setConfig( config ).newGraphDatabase();
        }
        if (autoTx) {
            // with the batch inserter the tx is a dummy that simply succeeds all the time
View Full Code Here

TOP

Related Classes of org.neo4j.unsafe.batchinsert.SpatialBatchGraphDatabaseService

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.