Re: [Neo] How to efficiently query in Neo4J?

2010-04-10 Thread Robert Hritz
I haven't followed this entire discussion, however I think Celko's way is poor (RDBMS) man's replacement for a depth-first search on a tree and it's actually much easier to do that in Neo4j using relations (I did). Instead of annotating just point to the next node in the depth-first search and

Re: [Neo] Big Data Workshop - April 23

2010-04-10 Thread Peter Neubauer
Sounds very cool Joseph, none of the NeoTechnology team is in the region at that time, but maybe someone on the list is interested in either giving an intro to Neo4j or just coming up with interesting sessions? Cheers, /peter neubauer COO and Sales, Neo Technology GTalk: neubauer.peter

Re: [Neo] Connecting to Neo4j DB from ActionScript

2010-04-10 Thread Amir Hossein Jadidinejad
Hi, After a lot of try/miss attempts, finally I've created both the server and client sides. I have some problems: 1. I don't know how to manage shutting down stuffs (GraphDatabaseService and IndexService) in the client side. 2. When I run the flex page for the first time (after restarting the

Re: [Neo] Connecting to Neo4j DB from ActionScript

2010-04-10 Thread rick . bullotta
I would not use a Runtime shutdown hook from within Tomcat. I would use a ServletContextListener (override the contextInitialized and contextDestroyed events), and create singletons for the GraphDatabaseService/LuceneIndex when the webapp initializes, and shut them down when the