Was curious, but are any NoSQL DBMS written in Ruby?
And if not, would it be unwise to create one in Ruby?
|
In 2007, Anthony Eden played around with RDDB, a CouchDB-inspired document-oriented database. He still keeps a copy of the code in his GitHub account. I vaguely remember that at or around the same time, someone else was also playing around with a database in Ruby. I think it was either inspired by or a reaction to RDDB. Last but not least, there is the PStore library in the stdlib, which – depending on your definition – may or may not count as a database.
The biggest problem I see in Ruby are its concurrency primitives. Threads and locks are so 1960s. If you want to support multiple concurrent users, then you obviously need concurrency, although if you want to build an embedded in-process database, then this is much less of a concern. Other than that, there are some not-so-stellar implementations of Ruby, but that is not a limitation of Ruby but of those particular implementations, and it applies to pretty much every other programming language as well. Rubinius (especially the current development trunk, which adds Ruby 1.9 compatibility and removes the Global Interpreter Lock) and JRuby would both be fine choices. As an added bonus, Rubinius comes with a built-in actors library for concurrency and JRuby gives you access to e.g. Clojure's concurrency libraries or the Akka actors library. Performance isn't really much of a concern, I think. Rubinius's |
|||
|
|
|
Ruby is just too slow for any type of DBMS c/c++/erlang are generally the best choice. |
|||
|
|
|
You generally shouldn't care in what programming language was a DBMS implemented as long it has all the features and is available for use from your application programming language of choice. So, the real question here is do you need one written in Ruby or available for use in Ruby. In first case, I doubt you'll find a DBMS natively written in Ruby (any correction of this statement will be appreciated). In second case, you should be able to find Ruby bindings/wrappers for any decent DBMS relational or not. |
|||
|