Re: [Neo4j] Creating Multiple nodes

2014-03-12 Thread Luanne Coutinho
Hi, Here are some references to get you started: The online training course: http://www.neo4j.org/learn/online_course Learn Cypher: http://www.neo4j.org/tracks/cypher_track_start Pick a driver to start coding: http://www.neo4j.org/develop The manual: http://docs.neo4j.org/chunked/stable/ Let

[Neo4j] Creating Multiple nodes

2014-03-12 Thread jigar katariya
Sir can someone help me out how can i create a multiple nodes at once because i am developing a project as i want to develop a graph with multiple nodes so could someone help me out in doing so ? Thank you -- You received this message because you are subscribed to the Google Groups "Neo4j" gro

Re: [Neo4j] Neo4j as a service?

2014-03-12 Thread Michael Hunger
Kevin, it is on neo4j.org/download more specifically: http://www.neo4j.org/download/other_versions -> http://info.neotechnology.com/download_thanks.html?edition=community&release=2.0.1&platform=windows Cheers, Michael (michael)-[:SUPPORTS]->(YOU)-[:USE]->(Neo4j) Learn Online, Offline or R

Re: [Neo4j] Neo4j as a service?

2014-03-12 Thread Kevin Burton
What is the location of the zip download that would contain this batch file? Thank you. On Wednesday, March 12, 2014 7:44:06 AM UTC-5, Michael Hunger wrote: > > The installer version is more for a single developer that easily wants to > manually control the server. > > There is also a zip downlo

[Neo4j] Re: Neo4j as a service?

2014-03-12 Thread Jim Salmons
In addition to what Michael pointed out, you might be interested in my Neo4jCP control panel. It's a tiny (compiled Autohotkey) utility to manage the Neo4j server like you are looking to do. Mind you, this is a non-enterprise basic utility and it sounds like you may have more significant needs,

Re: [Neo4j] Iterate over nodes with the same property

2014-03-12 Thread Michael Hunger
Add labels to your nodes. or use GlobalGraphOperations.at(gdb).getAllNodes() and iterate over those. Cheers, Michael (michael)-[:SUPPORTS]->(YOU)-[:USE]->(Neo4j) Learn Online, Offline or Read a Book (in Deutsch) We're trading T-shirts for cool Graph Models Am 12.03.2014 um 15:03 sc

[Neo4j] Build Failed due to test failures

2014-03-12 Thread Ayappan Perumal
I am building neo4j after getting the source from github but the build failed due to test failures Below are the sequence of steps i followed #git clone https://github.com/neo4j/neo4j neo4j #cd neo4j #mvn clean install -DskipBrowser Test failure results are below Running org.neo4j.kernel.imp

[Neo4j] Iterate over nodes with the same property

2014-03-12 Thread Sotiris Beis
I want to get all the nodes having the same property value. I am trying to work with this findNodesByLabelAndProperty(label, key, value) the nodes in my database has not any labels. I put null in the label field and i get this exception Exception in thread "main" java.lang.NullPointerException a

[Neo4j] Cartesian Products in Cypher

2014-03-12 Thread Arijeet Mukherjee
I've gone through Wes Freeman's blogposton Cypher optimizations and Mark Needham's blogposton applying them, and the

Re: [Neo4j] Neo4j as a service?

2014-03-12 Thread Michael Hunger
The installer version is more for a single developer that easily wants to manually control the server. There is also a zip download which contains a Neo4jInstaller.bat that can be used to install Neo4j as a system service. Cheers, Michael (michael)-[:SUPPORTS]->(YOU)-[:USE]->(Neo4j) Lear

[Neo4j] Neo4j as a service?

2014-03-12 Thread Kevin Burton
I just started using Neo4j and I am on a Windows platform (x64 Windows 2008 Server). From all that I can tell I need to start Neo4j Community app and fill in the database location every time I want to use the database. Is there a way to start Neo4j as a service with some default configuration s

Re: [Neo4j] Clustering in Neo4j

2014-03-12 Thread Navrattan Yadav
thanks Michael. On Wed, Mar 12, 2014 at 2:39 PM, Michael Hunger < michael.hun...@neopersistence.com> wrote: > Yes, see: > http://docs.neo4j.org/chunked/stable/tutorials-java-embedded-setup.html#editions > > You would use this API > http://components.neo4j.org/neo4j-enterprise/2.0.0/apidocs/org/n

Re: [Neo4j] Clustering in Neo4j

2014-03-12 Thread Michael Hunger
Yes, see: http://docs.neo4j.org/chunked/stable/tutorials-java-embedded-setup.html#editions You would use this API http://components.neo4j.org/neo4j-enterprise/2.0.0/apidocs/org/neo4j/graphdb/factory/HighlyAvailableGraphDatabaseFactory.html#newHighlyAvailableDatabaseBuilder(java.lang.String) and

Re: [Neo4j] Usage Logging: In the Graph?

2014-03-12 Thread Chris Vest
A node with millions of relationships is going to slow down any traversal that will come across it. In 2.1 it'll only slow down traversals of the particular type and direction of relationship, which may or may not improve ones situation depending on the queries you want to run. "Users Who Viewe

[Neo4j] Clustering in Neo4j

2014-03-12 Thread Navrattan Yadav
hi i am using Neo4j 2.0. i use Java Api to create database ( node and relation) GraphDatabaseFactory. i want to cluster the db . is it possible ? i am not using any Neo4j server nor RestAPI. -- You received this message because you are subscribed to the Google Groups "Neo4j" group. To unsubs

Re: [Neo4j] How do I return the relationship type name in a cypher query?

2014-03-12 Thread GomathiNayagam S
START r=rel(*) return distinct(type(r)) On Monday, November 25, 2013 2:41:31 AM UTC+5:30, Jacqui Read wrote: > > Is there a way to get it to return only distinct relationship types? > > On Friday, 30 August 2013 19:35:24 UTC+1, Michael Hunger wrote: >> >> then "r" is a collection and you can do: