Ruby driver for MongoDB
Go to file
Jim Menard 2d751888e3 removed incorrect, misleading comment 2008-12-09 15:16:25 -05:00
bin db name command line arg 2008-12-08 16:58:16 -05:00
examples renamed examples/irb.rb to bin/mongo_console 2008-12-08 16:05:08 -05:00
lib Support for sorting. 2008-12-09 15:06:35 -05:00
tests removed incorrect, misleading comment 2008-12-09 15:16:25 -05:00
.gitignore Rake rdoc task. 2008-12-04 16:38:04 -05:00
README Support for sorting. 2008-12-09 15:06:35 -05:00
Rakefile documentation tweaks 2008-12-04 16:44:21 -05:00

README

= Introduction

This is a simple pure-Ruby driver for the 10gen Mongo DB. For more information
about Mongo, see http://www.mongodb.org.

Note: this driver is still alpha quality. The API will change, as will the
data saved to the database (especially primary key values). Do *_not_* use this
for any production data.


= Demo

  $ ruby examples/demo.rb

Mongo must be running, of course.


= Testing

  $ rake test

The tests assume that the Mongo database is running on the default port.


= Documentation

  $ rake rdoc

Then open the file doc/index.html. (I need to figure out where to put this on
the Web, or even how to publish this to the Wiki at
http://github.com/jimm/mongo-ruby-driver/wikis automatically.)


= The Code

Most of this code was transliterated from Geir Magnusson Jr's Java Mongo
driver, which can be found at
http://github.com/geir/mongo-java-driver/tree/master.

== Release Notes

I plan to remove the auto-generation of _id primary keys.

If you ran tests using code before release
http://github.com/jimm/mongo-ruby-driver/commit/4244f56ce6c7044a1ce096843eb991856422c0cc
then the DB API tests might fail the first time you run it. If that doesn't
clear up the failed test, you might have to delete your database. To do that,
type

  $ rm /data/db/ruby-mongo-test*


= To Do

* Tests that prove that this driver's ObjectID and Geir's Java version do the
  same thing.

* Capped collection support.

* More code comments. More text in this file.

* Support more types: REF, SYMBOL, CODE_W_SCOPE, etc.

* Introduce optional per-database and per-collection PKInjector.

* Synchronization.

* More tests.

* Implement Admin.

* Study src/main/ed/db/{dbcollection,dbcursor,db}.js and ByteEncoder.java in
  the Babble code. That's what I should be writing to.


= Credits

Adrian Madrid, aemadrid@gmail.com
* examples/benchmarks.rb
* examples/irb.rb
* Modifications to examples/simple.rb
* Found plenty of bugs and missing features.
* Many other code suggestions and improvements.


= License

== Mongo Ruby Driver

Copyright (C) 2008 10gen Inc.

This program is free software: you can redistribute it and/or modify it under
the terms of the GNU Affero General Public License, version 3, as published by
the Free Software Foundation.

This program is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more
details.

See http://www.gnu.org/licenses/ for a copy of the GNU Affero General Public
License.

--
# Local Variables:
# mode:rdoc
# End:
++