public
Description: A wrapper around neo4j (http://neo4j.org/ ) in the Clojure language
Homepage:
Clone URL: git://github.com/JulianMorrison/neo4j-clojure.git
name age message
file README Sat Dec 06 12:26:08 -0800 2008 Fixes as suggested on #clojure [JulianMorrison]
file build.xml Sat Dec 06 12:26:08 -0800 2008 Fixes as suggested on #clojure [JulianMorrison]
file license.txt Sat Dec 06 13:10:28 -0800 2008 Licensed in the public domain. [JulianMorrison]
directory src/ Sat Dec 06 13:02:59 -0800 2008 Bug fix, typo. Make the example run. [JulianMorrison]
README
This is neo4j-clojure, a convenience wrapper around neo4j.

Neo4j (http://neo4j.org/ ) is a graph-structured on-disk transactional database.

Usage:

(use 'neo4j)

(with-neo "test"
  (tx
    (let [c (new-node) b (new-node)]
      (relate (top-node) :customers c)
      (relate c :customer b)
      (.setProperty b "name" "Bob")
      (success))))