Hi

I have moved the source code to git hub:
http://github.com/andreasronge/neo4j.rb/tree/master

Status
====

It is now possible to do things like this (this is a complete example)

require 'neo4j'

 Neo4j::transaction do

     class TestNode
       include Neo4j::Node
       properties :name, :age
     end

     node = TestNode.new
     node.name = 'foo'
     node.age  = 42

     TestNode.find(:name => 'foo', :age => 42) # => [node]

 end

All declared properties (name and age in the example above) are
automatically indexed by lucene.

There are still a lot of work do be done, like concurrency,
transaction and indexing issues. And how about optimisitic locking ?

I'm currently trying to understand what the LuceneIndexService does,
and maybe do something similar in ruby, maybe ...
_______________________________________________
Neo mailing list
[email protected]
https://lists.neo4j.org/mailman/listinfo/user

Reply via email to