[Neo4j] [ANN] Structr 1.0 Release Candidate 2

2014-05-06 Thread Axel Morgner
Hi Everyone, the second release candidate (RC2) of Structr 1.0 is available on Maven Central: http://search.maven.org/#browse%7C-315312233 Mostly stability improvements this time. Have fun! Axel -- Axel Morgner · a...@morgner.de · @amorgner CEO Structr (c/o Morgner UG) · Hanauer Lands

Re: [Neo4j] Cypher Query through REST API timeout

2014-05-06 Thread Michael Hunger
The do one prepared statement per query-type and put them in a map per query string Sent from mobile device Am 06.05.2014 um 11:26 schrieb Gene Tan : > Hi Michael > > Is it possible to do this if the labels and relationships for nodes changes, > as upon reading i am not able to parameterized

Re: [Neo4j] Cypher Query through REST API timeout

2014-05-06 Thread Gene Tan
Hi Michael Is it possible to do this if the labels and relationships for nodes changes, as upon reading i am not able to parameterized labels and relationships. as the batch of per 500 queries may differ on relationships and labels being used per query. On Tuesday, May 6, 2014 3:47:07 PM UTC+

Re: [Neo4j] Cypher Query through REST API timeout

2014-05-06 Thread Michael Hunger
Don't acquire new connection objects Don't create new prepared statements Sent from mobile device Am 06.05.2014 um 09:31 schrieb Gene Tan : > Hi Michael, > > I have made changes to the query and the code used but it seems the query > time for jdbc driver is still slower comapred to Java Rest B

Re: [Neo4j] Cypher Query through REST API timeout

2014-05-06 Thread Gene Tan
Hi Michael, I have made changes to the query and the code used but it seems the query time for jdbc driver is still slower comapred to Java Rest Binding, MERGE (firstNode:Soap {id:{1}}) ON CREATE SET firstNode.brand={2}, firstNode.updated = timestamp() ON MATCH SET firstNode.updated=timestamp()