Andreas Ronge
Andreas Ronge
why not, How would you like the DSL to look like for merge ?
Hmm, how about something like this: ``` merge{node.create({ id: 12 }, :foobar)} ``` Then a DSL for merge on multiple relationship would be similar: Example: ``` merge do match({name:'Oliver Stone'},...
That is actually the same as ``` merge do match({name:'Oliver Stone'}, :Person) > "movie:Movie" > match({name:'Rob Reiner'}, :Person) end ret(:movie) ``` except that the names of the nodes (oliver and...
Great to know, but feels like there is not much we can do about it ?
Sorry, I don't know what the problem is. If possible you should try using the standalone neo4j server which comes included with the web admin UI and use that together...
Hmm, I don't know. Have not seen this problem before. I guess there is a conflict in JARs used by TorqueBox and Neo4j or JRuby. Btw, did you test with...
Sorry but I have no clue. I guess you have to do a binary search and try to remove things and see when it starts working again. For example try...
There is a mismatch of JAR version. There used to be a method `org.neo4j.kernel.Config.getGraphDbModule()Lorg/neo4j/kernel/impl/core/GraphDbModule` but that does not exist using the neo4j 2.0.0.alpha.5 JAR files (neo4j-community)
Well, I would suggest using the Neo4j HA with Rails console or Neo4j Standalone, see my wiki pages.
Yes, but you must use the embedded one as well, since that talks to the standalone server. There is an example on my wiki pages for neo4j.rb how to set...