Ruby ObjectDatabase is there any?

Is there a real working Object Database(not ORM) written in Ruby or
stable adapter to non-Ruby one?

I goggled for Ruby Object Database and found some projects, but haven't
found any real working solution.
Mainly they just serialize objects and write it to disk with id. Not
much usable.
Also i found project trying to create adapter for db4o, but it's in
pre-alpha.

Maybe i missed something? Really hope i did :slight_smile:

What i mean for real-working? As a sample pseudo code for the Java db4o
database (very base feature, there are also a lot of functions):

class List;
聽聽attr_accessor :topics
end

class Topic
聽聽attr_accessors :name, :text
end

list = List.new
list.topics << Topic.new('fist', 'bla-bla')
list.topics << Topic.new('second', 'bla-bla')

db.put list

prototype = Topic.new('first', nil) # Matcher for search
topics = db.get prototype # topics contains all found topics

路路路

--
Posted via http://www.ruby-forum.com/.

Right now i use a rough prototype (one of my friend told me that i'm
crazy, when i show him what i did :))
Anyway it's just a prototype(with terrible performance) :).

I use eXist XML database with XPath support and objects-tree to XML
mapping.

put: objects-tree => XML => eXist
get: XPath => eXist => XML => objects-tree

Code for previous example with this scenario looks like:

db.get "//[@class = 'Topic' and @name = 'first']"

路路路

--
Posted via http://www.ruby-forum.com/.