[Neo4j] Re: a* traversal cost evaluator - how to customize

2016-06-06 Thread John Fry
Just to close this off, as Michael correctly stated: - the cost evaluator is a measurable cost property/attribute present on the relationship. - the cost estimator is the heuristic estimate of cost to the end node to help the optimize the search. On Friday, June 3, 2016 at 8:40

Re: [Neo4j] Modeling challenge - multiple node labels?

2016-06-06 Thread Henry
That makes sense. Thank you for your reply! On Monday, June 6, 2016 at 7:47:51 AM UTC-5, Michael Hunger wrote: > > Just quickly. > > You can either use labels like :Band, :Artist > > And if you know that you have a band you can still create MEMBER_OF > relationships between the individual and the

Re: [Neo4j] Modeling challenge - multiple node labels?

2016-06-06 Thread 'Michael Hunger' via Neo4j
Just quickly. You can either use labels like :Band, :Artist And if you know that you have a band you can still create MEMBER_OF relationships between the individual and the bands. There are some other projects in this area, like the musicbrainz -> neo4j or lastfm import Or startups like musima

Re: [Neo4j] CompilationManipulator

2016-06-06 Thread 'Michael Hunger' via Neo4j
Nathaniel, it was a community / partner effort on Neo4j 1.5 We didn't have the capacity to pursue this further ... Not sure what a good continuation of this project would be. Cheers, Michael On Sat, Jun 4, 2016 at 6:06 PM, Nathaniel Bond wrote: > It's a little difficult to get it to work in

[Neo4j] Re: unmanaged extensions, root resource classes not found

2016-06-06 Thread Simei He
And how can I forget, the full log is posted here https://github.com/dmontag/neo4j-unmanaged-extension-template/issues/6 On Wednesday, December 14, 2011 at 2:54:28 PM UTC+8, KentFitch wrote: > > Hi > I'm wondering if the issued described here was resolved: > > http://neo4j.org/nabble/#nabble-td34

[Neo4j] Re: unmanaged extensions, root resource classes not found

2016-06-06 Thread Simei He
I've run into the same problem here. And this is what my jar file looks like *$ jar tf unmanaged-extension-template-1.0.jar * *META-INF/* *META-INF/MANIFEST.MF* *com/* *com/neo4j/* *com/neo4j/example/* *com/neo4j/example/extension/* *com/neo4j/example/extension/MyService$Labels.class* *co

Re: [Neo4j] CompilationManipulator

2016-06-06 Thread Nathaniel Bond
It's a little difficult to get it to work in Android Studio... On Monday, June 18, 2012 at 7:42:51 AM UTC-4, Peter Neubauer wrote: > > Jeffrey, > this has to do with custom JavaDoc annotation processing, needed for > certain non-standard annotations like > > @Graph > @Title > @Documented > >

[Neo4j] Modeling challenge - multiple node labels?

2016-06-06 Thread Henry
Hello all! First of all I want to thank everyone on the Neo4j team for all their hard work on such a promising and exciting new technology. I'm working on a bit of a pet project at the moment; I'm hoping to take the data dumps from Discogs (a record collection site) and load it into Neo4j. My