This page is no longer maintained — Please continue to the home page at www.scala-lang.org

Neo4j-Scala Wrapper 0.1.0 released

1 reply
Christopher Sch...
Joined: 2010-08-30,
User offline. Last seen 42 years 45 weeks ago.
This is a crosspost for all interested in Neo4j and Scala, initially done in the neo4j mailing list some time ago. Hope thats ok...
Hi all,
I released version 0.1.0 of the Neo4j Scala Wrapper neo4j-scala (base is neo4j-scala by jawher). Main features are
- simple Traits for the wrapper itself, GraphDatabaseService provider, index provider and batch insertion - transaction wrapping: 
withTx {...}
- natural usage of relations: 
start --> "KNOWS" --> intermediary --> "KNOWS" --> end
- setting and getting properties: 
node("foo") = "bar" node[String]("foo") match {    case Some(x) => println(x)     case None => println("aww")}
- easy CaseClass to/from Node/Relation properties marshaling
withTx {   implicit neo =>    // create new Node with Case Class Test     val node1 = createNode(Test("Something", 1, 2, 3.3, 10, true))
    // or using Option[T] (returning Some[T] if possible)    val nodeOption: Option[Test] = node.toCC[Test]
    // create new relation with Case Class Test     node1 --> "foo" --> node2 < Test("other", 0, 1, 1.3, 1, false)}
- transparent batch processing (simply replace 2 traits to use the same code for batch- and non batch processing)
For now I am using a simple Github "Maven repository".  Neo4j-scala should be usable with the following POM settings:    <repositories>      <repository>         <id>fakod-releases</id>        <url>https://raw.github.com/FaKod/fakod-mvn-repo/master/releases</url>       </repository>    </repositories>
    <dependencies>      <dependency>         <groupId>org.neo4j</groupId>        <artifactId>neo4j-scala</artifactId>         <version>0.1.0</version>      </dependency>     </dependencies>
The Sources are hosted on Github: 
https://github.com/FaKod/neo4j-scala/tree/0.1.0

A simple Matrix example GIST is here: 
https://gist.github.com/1331556

Enjoy...

PS: Maybe you are using Neo4j Server via Jersey? So sjersey-client may be interesting for you as well: see @ Github and this example.


--
Christophertwitter: @fakodblog: http://blog.fakod.eu
Sylvain HENRY
Joined: 2009-05-28,
User offline. Last seen 42 years 45 weeks ago.
Re: Neo4j-Scala Wrapper 0.1.0 released
Hi,

Thanks! For now I'm still using my own incomplete wrapper (https://github.com/hsyl20/neo4s). Happy to see that someone else is working on this kind of stuff.

Cheers
Sylvain

Le 06/01/2012 08:19, Christopher Schmidt a écrit :
74-8w [at] mail [dot] gmail [dot] com" type="cite"> This is a crosspost for all interested in Neo4j and Scala, initially done in the neo4j mailing list some time ago. Hope thats ok...
Hi all,
I released version 0.1.0 of the Neo4j Scala Wrapper neo4j-scala (base is neo4j-scala by jawher). Main features are
- simple Traits for the wrapper itself, GraphDatabaseService provider, index provider and batch insertion - transaction wrapping: 
withTx {...}
- natural usage of relations: 
start --> "KNOWS" --> intermediary --> "KNOWS" --> end
- setting and getting properties: 
node("foo") = "bar" node[String]("foo") match {     case Some(x) => println(x)     case None => println("aww") }
- easy CaseClass to/from Node/Relation properties marshaling
withTx {   implicit neo =>     // create new Node with Case Class Test     val node1 = createNode(Test("Something", 1, 2, 3.3, 10, true))
    // or using Option[T] (returning Some[T] if possible)     val nodeOption: Option[Test] = node.toCC[Test]
    // create new relation with Case Class Test     node1 --> "foo" --> node2 < Test("other", 0, 1, 1.3, 1, false) }
- transparent batch processing (simply replace 2 traits to use the same code for batch- and non batch processing)
For now I am using a simple Github "Maven repository".  Neo4j-scala should be usable with the following POM settings:     <repositories>       <repository>         <id>fakod-releases</id>         <url>https://raw.github.com/FaKod/fakod-mvn-repo/master/releases</url>       </repository>     </repositories>
    <dependencies>       <dependency>         <groupId>org.neo4j</groupId>         <artifactId>neo4j-scala</artifactId>         <version>0.1.0</version>       </dependency>     </dependencies>
The Sources are hosted on Github: 
https://github.com/FaKod/neo4j-scala/tree/0.1.0

A simple Matrix example GIST is here: 
https://gist.github.com/1331556

Enjoy...

PS: Maybe you are using Neo4j Server via Jersey? So sjersey-client may be interesting for you as well: see @ Github and this example.


--
Christopher twitter: @fakod blog: http://blog.fakod.eu

Copyright © 2012 École Polytechnique Fédérale de Lausanne (EPFL), Lausanne, Switzerland