Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

where can I find a neo4j quick tutorial? [closed]

I was trying to save directed graphs into databases for further processing and query. And neo4j seems to fit my needs. However, I don't seem to find a good tutorial regarding the following:

  • Creating the database and put data in.
  • Making queries.

I want to be able to do them both manually and automatically (i.e. using a program). The official manual keeps talking about stuff like Maven, Index, REST API and so on, basically things I don't care about at all for now.

So any good hands-on tutorial on neo4j? Or any other graph databases you think is good for total beginners with simple needs (i.e. store graph and query graph)?

like image 336
dacongy Avatar asked Dec 24 '11 06:12

dacongy


People also ask

Where are Neo4j databases stored?

Neo4j database files are persisted to storage for long term durability. Data related files located in data/databases/graph. db (v3. x+) by default in the Neo4j data directory.

Where is Neo4j home directory?

NEO4J_HOME=/var/lib/neo4j is the Neo4j installation directory. In an RPM installation, the NEO4J_HOME directory is /var/lib/neo4j, by default. For . tar files, use the path to the folder where Neo4j is extracted.

How long does it take to learn Neo4j?

Neo4j Professional Services We offer a Technical bootcamp (4 days) which is a combination of training and consulting services to ensure your project gets off to the right start.


2 Answers

For getting started just download the Neo4j Server and start it. Then go to http://localhost:7474 for the integrated web-admin UI which allows you to enter data visually and browser/visualize and query it.

Please have a look at the Neo4j Koans by Jim Webber and Ian Robinson which are material that are used in real-world tutorials. Otherwise also have a look on http://video.neo4j.org for some screencasts and presentations and the collection of introduction links at the neo4j delicious site.

like image 183
Michael Hunger Avatar answered Sep 27 '22 20:09

Michael Hunger


I started a blog for Neo4j beginners. The first four posts are up and they show you how to get neo4j, install it, create some sample data, find friends of friends, six degrees of separation (path finding), use gremlin scripts and cypher queries.

like image 37
Max De Marzi Avatar answered Sep 27 '22 20:09

Max De Marzi