Skip to content

Commit

Permalink
upgrade to Neo4j 1.8.RC1, disable batch-transactions by default
Browse files Browse the repository at this point in the history
  • Loading branch information
jexp committed Sep 17, 2012
1 parent fef4442 commit 66bbd0e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 21 deletions.
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -68,7 +68,7 @@ _timeouts in seconds_

* org.neo4j.rest.read_timeout=30
* org.neo4j.rest.connect_timeout=30
* org.neo4j.rest.driver="neo4j-rest-graphdb/1.8M07"
* org.neo4j.rest.driver="neo4j-rest-graphdb/1.8.RC1"
* org.neo4j.rest.stream=true
* org.neo4j.rest.batch_transactions=true (convert transaction scope into batch-rest-operations)
* org.neo4j.rest.batch_transactions=false (convert transaction scope into batch-rest-operations)
* org.neo4j.rest.logging_filter=false (set to true if verbose request/response logging should be enabled)
19 changes: 1 addition & 18 deletions pom.xml
Expand Up @@ -16,7 +16,7 @@
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<slf4j.version>1.6.1</slf4j.version>
<neo4j.version>1.8.M07</neo4j.version>
<neo4j.version>1.8.RC1</neo4j.version>
<jersey.version>1.4</jersey.version>
<blueprints.version>1.2</blueprints.version>
<gremlin.version>1.5</gremlin.version>
Expand Down Expand Up @@ -88,23 +88,6 @@ the relevant Commercial Agreement.
<artifactId>jackson-jaxrs</artifactId>
<version>1.8.5</version>
</dependency>
<!--dependency>
<groupId>com.sun.jersey.contribs</groupId>
<artifactId>jersey-apache-client4</artifactId>
<version>1.9-ea04</version>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<version>4.1.3</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpcore</artifactId>
<version>4.1.3</version>
<scope>compile</scope>
</dependency-->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/neo4j/rest/graphdb/util/Config.java
Expand Up @@ -40,7 +40,7 @@ public static boolean streamingIsEnabled() {
}

public static boolean useBatchTransactions() {
return System.getProperty(CONFIG_BATCH_TRANSACTION,"true").equalsIgnoreCase("true");
return System.getProperty(CONFIG_BATCH_TRANSACTION,"false").equalsIgnoreCase("true");
}

public static boolean useLoggingFilter() {
Expand Down

0 comments on commit 66bbd0e

Please sign in to comment.