Re: [Neo4j] How do I load data into IMDB web app?

2011-08-15 Thread Michael Hunger
open in browser localhost:8080/imdb/setup.html mobile mail please excuse brevity and typos Am 15.08.2011 um 02:09 schrieb etc1 e...@nextideapartners.com: I've got the IMDB sample project running in Eclipse STS; I'm using the spring data graph version. How do I load the data from the *.list

Re: [Neo4j] Finding paths between two nodes

2011-08-15 Thread Andres Taylor
On Sun, Aug 14, 2011 at 11:44 AM, Faster2B faste...@gmail.com wrote: I had already read this, but i can not find how to specify an intermediate node. I am interested in finding a route between two cities crossing another city that I will choose. I don't think there's a direct way to do

Re: [Neo4j] n-ary relationships

2011-08-15 Thread Niels Hoogeveen
Hi Emerson, Over the last couple of weeks, I have been working on an implementation of n-ary relationships on top of Neo4j. I also detailed how n-ary relationships could in principle be implemented in the database kernel (see: http://lists.neo4j.org/pipermail/user/2011-August/011191.html).

Re: [Neo4j] Defining relationships declaritavely or with annotations

2011-08-15 Thread etc1
Mike, Thanks, I finally fixed this problem. Instead of trying to manage the dependencies manually, I took the pom file from the imdb data graph project, replaced the aspectj version in the pom to 1.6.12.M1, then dropped the pom into a new STS project, then refreshed all maven dependencies. No

[Neo4j] Any webservice based spring data graph example

2011-08-15 Thread Vipul Gupta
I was having some trouble integrating Apache CXF with Spring data graph container. So I am wondering if there is any webservice based spring data graph example for which I can look at the source code. Please let me know Thanks ___ Neo4j mailing list

Re: [Neo4j] Replication corner cases?

2011-08-15 Thread Tuure Laurinolli
On Aug 12, 2011, at 20:40 , Tuure Laurinolli wrote: Updates will however propagate from the master to other slaves eventually so a write from one slave is not immediately visible on all other slaves. It sounds like eventual consistency from master to other slaves. if so, I am interested in

Re: [Neo4j] Replication corner cases?

2011-08-15 Thread Tuure Laurinolli
On Aug 15, 2011, at 18:18 , Tuure Laurinolli wrote: On Aug 12, 2011, at 20:40 , Tuure Laurinolli wrote: Updates will however propagate from the master to other slaves eventually so a write from one slave is not immediately visible on all other slaves. It sounds like eventual consistency

[Neo4j] test email

2011-08-15 Thread Andreas Kollegger
please ignore, and delete at will ___ Neo4j mailing list User@lists.neo4j.org https://lists.neo4j.org/mailman/listinfo/user

[Neo4j] Events This Week - 08/15/2011

2011-08-15 Thread Allison Sparrow
*** Hi Everyone, Here are the events organized for this week. If you have any questions regarding participation, feel free to email me at alli...@neotechnology.com Thursday, 15 August 2011 @10:00 PDT Join this webinar for a fast paced introduction to Graph

[Neo4j] Using Data Graph and @NodeEntity, API methods not compatible

2011-08-15 Thread etc1
When annotating an entity class with @NodeEntity, such as ... @NodeEntity public class Movie {. ..this appears to cause many neo4j api methods to become incompatible with the custom entity type, in this case Movie, for example... Movie rainman = new Movie(Rain Man, 1986).persist();

Re: [Neo4j] Using Data Graph and @NodeEntity, API methods not compatible

2011-08-15 Thread Michael Hunger
you shouldn't use gds with annozated enities the are no nodes etc but the delegate to nodes rels use graphdatabasecontext or the repositories please see the docs I'm on vacation mobile mail please excuse brevity and typos Am 15.08.2011 um 19:38 schrieb etc1 e...@nextideapartners.com: When

Re: [Neo4j] Using Data Graph and @NodeEntity, API methods not compatible

2011-08-15 Thread etc1
I am using GraphDatabaseContext, sorry, I should have been clear on that. @Autowired private GraphDatabaseContext gds; Movie retrievedMovie = (Movie)gds.getNodeById(rainman.getNodeId()); -Original Message- From: user-boun...@lists.neo4j.org

Re: [Neo4j] Very Slow Transaction only on Windows

2011-08-15 Thread Keiichiro Ono
Hi Michael, 2011/8/14 Michael Hunger michael.hun...@neotechnology.com: Btw. even on Kei's Macbook it shouldn't take a second to add 1000 vertices. Rather around a few milliseconds. Don't know what kind of overhead, the blueprints / cytoscape managers around the neo4j core add. I'm

[Neo4j] Is data lost if the object graph and relationships are changed?

2011-08-15 Thread etc1
Hypothetical example, let's say I'm building a system and I want to capture Person and Address entities, I might model it like this Person ---(RESIDES_AT)--- Address Assume that the relationship is bi-directionally, so whether I have a person or address entity, I can always find the other.

Re: [Neo4j] Any webservice based spring data graph example

2011-08-15 Thread Andreas Kollegger
Hi Vipul, What was the trouble you were having with Apache CXF? Were you deploying Neo4j as an embedded database, intending to use CXF to expose an interface? Or were you accessing Neo4j Server's REST api from Apache CXF? I'm not aware of any example projects that have used Apache CXF, but am

[Neo4j] ShortestPath Exception

2011-08-15 Thread John Howard
I am using 1.4 M03. Not sure if this is already reported/fixed. java.util.ConcurrentModificationException at java.util.HashMap$HashIterator.nextEntry(HashMap.java:793) at java.util.HashMap$KeyIterator.next(HashMap.java:828) at

[Neo4j] Filter traversal result by relationship type (REST API)

2011-08-15 Thread Nuo Yan
I wanted to traverse the graph from my origin node, and get all nodes in the next level only (max depth == 1) such that they have foo relationship type with the origin node but not bar relationship type. I set my return filter to be: { language : javascript, body :

Re: [Neo4j] Is data lost if the object graph and relationships are changed?

2011-08-15 Thread Niels Hoogeveen
All your existing relationships will remain the same, unless you remove them yourself. If you make your hypothetical changes, all Persons will keep a relationship to Address through the RESIDES_AT relationship, even though you now create a new ContactInfo entity that connects to Address too.

Re: [Neo4j] Is data lost if the object graph and relationships are changed?

2011-08-15 Thread etc1
OK, but after making changes to the relationships, does the graph service automatically allow me to navigate from Person to ContactInfo to Address? -Original Message- From: user-boun...@lists.neo4j.org [mailto:user-boun...@lists.neo4j.org] On Behalf Of Niels Hoogeveen Sent: Monday, August

Re: [Neo4j] Is data lost if the object graph and relationships are changed?

2011-08-15 Thread Niels Hoogeveen
Relationships can't be changed. They are created from one Node to another Node with a certain RelationshipType, and can only be removed.. All Relationships you create can be navigated. If your original code did something like: person.getSingleRelationship(RESIDES_AT,

[Neo4j] Problems with Aspects, @Transactional, and neo4j not shutting down properly.

2011-08-15 Thread etc1
I'm working with the spring data graph samples and created a few simple projects of my own to learn the proper use of annotations. After running a few examples, I noticed consistent messages in the log about Non clean shutdown detected and Corrupt index exception, etc. Is it required to use

[Neo4j] Number of request per second using Neo4j Server configuration and REST

2011-08-15 Thread shlomyb
Hi Using Neo4j Server , how much REST requests it can handled concurrently\per second? I am intresting especially in REST requests that query a small portion of the graph םר update a small portion of it. 10x. -- View this message in context: