Faisal,
Indeed, I had a similar problem once, it is a feature of TestNG and actually it helps you to keep your tests isolated from eachother - but it can be a bit painful...
If I were you, I...
Type: Posts; User: lassewesth; Keyword(s):
Faisal,
Indeed, I had a similar problem once, it is a feature of TestNG and actually it helps you to keep your tests isolated from eachother - but it can be a bit painful...
If I were you, I...
Mitko,
Please use SDN version 2.1.0.
Regards,
Lasse
faisala,
Neo4jHelper might be your friend:...
jarebu,
+1, the REST interface is super chatty (as REST interfaces would be).
Angelo: Embedded/ extensions or batching with Cypher are your best options to improve performance.
Regards,
...
Christina,
I sat down and did a from-scratch example of cross-store persistence, please find it here:
https://github.com/lassewesth/crossstore
I have not added indexes, and also want to try...
jarebu,
I think you are missing a
<neo4j:config storeDirectory="foo" /> - try if that helps.
Regards,
Lasse
Markus,
We are aware of it: https://github.com/neo4j/community/issues/search?q=impermanentgraphdatabase
It should still be fully functional though, if you can reproduce this consistently please...
Christina,
There is an example here: https://github.com/SpringSource/spring-data-neo4j/tree/master/spring-data-neo4j-examples/myrestaurants-social
Also, would it be possible to share your...
treaves,
Maps can be modelled with DynamicProperties: http://forum.springsource.org/showthread.php?126433-Spring-Data-Neo4j-How-to-map-java-util-Map-lt-String-String-gt-field&p=412727#post412727
...
Could you try with the @GraphId and @Id on separate fields? Im not sure what happens when you share - Neo4j will insist on generating the id for you.
Regards,
Lasse
M,
Here are a couple of short reads, let me know if those are not enough:
http://docs.neo4j.org/chunked/snapshot/server-embedded.html...
Ben,
I had a look. I don't think it is cross-store stuff that is the problem. Instead, here are a couple of changes that move the tests into green (some other tests are red for me though, due to...
faisala,
Firstly, Neo4j support simple types (boolean, int, long, double, String etc) and arrays of simple types (int[], float[] etc). SDN supports those directly too, as well as enums and...
Ben,
If it works work AspectJ 1.6.12 but not 1.7, I'd say it is an AspectJ problem.
Are you able to use AJ1.6?
- Lasse
treaves,
In this case the store format doesn't change.
We would be screaming from the rooftops if there was such a change. We ensure it happens very infrequently, probably would only happen...
I think it should be possible - with Cypher: http://static.springsource.org/spring-data/data-graph/snapshot-site/reference/html/#d5e1285
Not sure I can write that query easily though :)
There...
David,
Thanks for finding this!
bhiles,
Further to what David said, just want to point to this manual entry I wrote, for completeness:...
killersite,
I had a look at the project you shared on Github (I got a notification, the message isn't showing up here though...)
Substituting aspectj.version 1.7.0.RC1 => 1.6.12 means I can run...
David,
As a workaround, maybe a cypher query?
start n=node(*) match n-[r?]->() delete n,r
As for the actual problem: could you raise an issue here:...
Shazin,
Sorry for the delay, travel and scheduling has kept me busy.
Also apologies in advance for this brief answer: I find it best to refer to (continuously integrated) code for this stuff,...
David,
When you declare the relationship direction to be BOTH, then when you read an entity it will fetch both incoming and outgoing relationships with matching end nodes.
It is the writing...
ramirezag,
I made a couple of changes to your pom, and `mvn clean test` is successful:
<repository>
<id>neo</id>
<name>neo</name>
...
Andriy,
You are right, exec:java doesn't work as we no longer have a driver class.
We do however have some tests that better illustrate a Hello-World example:...
killersite,
Could you share a small (maven-based) project (on github) that reproduces the problem?
Lasse
Mark,
Our very own Stefan Armbruster has some stuff here: http://www.slideshare.net/darthvader42/grails-and-neo4j
I haven't tried it myself though...
Lasse