[Neo4j] Running server against database created with neo4j-embedded python

2012-01-05 Thread Sean Davis
This is probably a silly question, but I have a database that I am working with programmatically using embedded python. How can I point neo4j (as in "bin/neo4j start") to the directory of the embedded database instance (which will not be connected)? I simply want to use the web console and visual

Re: [Neo4j] Homegrew updated to 1.5 on OSX

2011-11-16 Thread Sean Davis
Thanks from us Mac users. Sean On Wed, Nov 16, 2011 at 4:15 AM, Peter Neubauer wrote: > Hi all, > > see https://github.com/mxcl/homebrew/blob/master/Library/Formula/neo4j.rb > which means > > brew install neo4j > > will now download and install Neo4j 1.5. Happy hacking! > > Cheers, > > /peter ne

Re: [Neo4j] Articles & Tags - Beginner Question

2011-10-14 Thread Sean Davis
On Fri, Oct 14, 2011 at 4:07 PM, Hesham wrote: > Continuing my exploration of Neo4j, I have this theoretical example. > > A user can create articles, and the articles can be tagged with a number of > keywords. > > In a RDB, I would create a separate table for tags and this will allow me > to: > >

Re: [Neo4j] Recommended way to enforce constraints?

2011-10-06 Thread Sean Davis
On Thu, Oct 6, 2011 at 8:00 PM, doubleagent wrote: > Yeah, I saw that in the manual.  That doesn't suit my purposes because I'm > trying to discover holes in neo4j that I have to manually fill, and then > trying to discover how difficult that is to do. > > So, if I've discovered a need for constra

Re: [Neo4j] Recommended way to enforce constraints?

2011-10-06 Thread Sean Davis
On Thu, Oct 6, 2011 at 3:06 AM, noppanit wrote: > For the tests you could use, tx.failure() instead of tx.success() to not > commit anything to the database. And I think the constraints, they need to be > checked from the application layer? > For a mostly-read database design, I have been index

[Neo4j] Fastest way to load large dataset using new python embedded mode

2011-10-05 Thread Sean Davis
I have a few datasets that contain about 70M nodes. Relationships between these sets will be sparse and will be added over time. What is the fastest way to load these nodes into neo4j? I can work with java (http://wiki.neo4j.org/content/Batch_Insert) if necessary, but I'd be interested to hear i