2008-12-02 01:20:00 +00:00
|
|
|
= Introduction
|
|
|
|
|
2009-01-07 21:07:22 +00:00
|
|
|
This is a Ruby driver for the 10gen Mongo DB. For more information about
|
|
|
|
Mongo, see http://www.mongodb.org.
|
2008-12-02 01:20:00 +00:00
|
|
|
|
2009-01-07 21:07:22 +00:00
|
|
|
Note: this driver is still alpha quality. The API will change, as *may* the
|
|
|
|
data saved to the database (especially primary key values). Do *_not_* use
|
|
|
|
this for any production data yet.
|
2008-12-04 21:38:04 +00:00
|
|
|
|
2009-01-08 16:48:59 +00:00
|
|
|
Start by reading the XGen::Mongo::Driver::Mongo and XGen::Mongo::Driver::DB
|
|
|
|
documentation, then move on to XGen::Mongo::Driver::Collection and
|
|
|
|
XGen::Mongo::Driver::Cursor.
|
|
|
|
|
|
|
|
A quick code sample:
|
|
|
|
|
|
|
|
require 'mongo'
|
|
|
|
|
|
|
|
include XGen::Mongo::Driver
|
|
|
|
|
|
|
|
db = Mongo.new('localhost').db('sample-db')
|
|
|
|
coll = db.collection('test')
|
|
|
|
|
|
|
|
coll.clear
|
|
|
|
3.times { |i| coll.insert({'a' => i+1}) }
|
|
|
|
puts "There are #{coll.count()} records. Here they are:"
|
|
|
|
coll.find().each { |doc| puts doc.inspect }
|
2008-12-02 01:21:22 +00:00
|
|
|
|
2009-01-08 16:42:52 +00:00
|
|
|
= Installation
|
|
|
|
|
|
|
|
Install the "mongo" gem by typing
|
|
|
|
|
2009-01-15 21:05:56 +00:00
|
|
|
$ gem sources -a http://gems.github.com
|
2009-01-15 21:49:01 +00:00
|
|
|
$ sudo gem install mongodb-mongo-ruby-driver
|
2009-01-08 16:42:52 +00:00
|
|
|
|
2009-01-15 21:05:56 +00:00
|
|
|
The source code is available at http://github.com/mongodb/mongo-ruby-driver.
|
|
|
|
You can either clone the git repository or download a tarball or zip file.
|
|
|
|
Once you have the source, you can use it from wherever you downloaded it or
|
|
|
|
you can install it as a gem from the source by typing
|
2009-01-08 16:42:52 +00:00
|
|
|
|
|
|
|
$ rake gem:install
|
|
|
|
|
|
|
|
|
2008-12-02 01:20:00 +00:00
|
|
|
= Demo
|
|
|
|
|
2009-01-08 16:42:52 +00:00
|
|
|
You can see and run the examples if you've downloaded the source. Mongo must
|
|
|
|
be running, of course.
|
2009-01-07 21:07:22 +00:00
|
|
|
|
2008-12-17 16:43:08 +00:00
|
|
|
$ ruby examples/simple.rb
|
2008-12-02 01:20:00 +00:00
|
|
|
|
2009-01-08 16:42:52 +00:00
|
|
|
See also the test code, especially tests/test_db_api.rb.
|
2008-12-02 01:20:00 +00:00
|
|
|
|
2008-12-02 01:21:22 +00:00
|
|
|
|
2009-01-13 17:53:55 +00:00
|
|
|
= Notes
|
|
|
|
|
|
|
|
== String Encoding
|
|
|
|
|
|
|
|
The BSON ("Binary JSON") format used to communicate with Mongo requires that
|
|
|
|
strings be UTF-8 (http://en.wikipedia.org/wiki/UTF-8).
|
|
|
|
|
|
|
|
Ruby 1.9 has built-in character encoding support. All strings sent to Mongo
|
|
|
|
and received from Mongo are converted to UTF-8 when necessary, and strings
|
|
|
|
read from Mongo will have their character encodings set to UTF-8.
|
|
|
|
|
|
|
|
When used with Ruby 1.8, the bytes in each string are written to and read from
|
|
|
|
Mongo as-is. If the string is ASCII all is well, because ASCII is a subset of
|
2009-01-16 19:41:53 +00:00
|
|
|
UTF-8. If the string is not ASCII then it may not be a well-formed UTF-8
|
|
|
|
string.
|
|
|
|
|
|
|
|
== The DB class
|
|
|
|
|
|
|
|
=== Primary Key Factories
|
|
|
|
|
|
|
|
A basic Mongo driver is not responsible for creating primary keys or knowing
|
|
|
|
how to interpret them. You can tell the Ruby Mongo driver how to create
|
|
|
|
primary keys by passing in the :pk option to the Mongo#db method.
|
|
|
|
|
|
|
|
include XGen::Mongo::Driver
|
2009-01-16 21:13:54 +00:00
|
|
|
db = Mongo.new.db('dbname', :pk => MyPKFactory.new)
|
2009-01-16 19:41:53 +00:00
|
|
|
|
|
|
|
A primary key factory object must respond to :create_pk, which should take a
|
|
|
|
hash and return a hash which merges the original hash with any primary key
|
|
|
|
fields the factory wishes to inject. NOTE: if the object already has a primary
|
|
|
|
key, the factory should not inject a new key; this means that the object is
|
|
|
|
being used in a repsert but it already exists. The idea here is that when ever
|
|
|
|
a record is inserted, the :pk object's +create_pk+ method will be called and
|
|
|
|
the new hash returned will be inserted.
|
|
|
|
|
|
|
|
Here is a sample primary key factory, taken from the tests:
|
|
|
|
|
|
|
|
class TestPKFactory
|
|
|
|
def create_pk(row)
|
|
|
|
row['_id'] ||= XGen::Mongo::Driver::ObjectID.new
|
|
|
|
row
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2009-01-16 21:14:49 +00:00
|
|
|
A database's PK factory object may be set after you obtain it, but only once.
|
2009-01-16 21:10:52 +00:00
|
|
|
The only reason it is changeable is so that libraries such as MongoRecord that
|
|
|
|
use this driver can set the PK factory after obtaining the database but before
|
|
|
|
using it for the first time.
|
2009-01-16 19:41:53 +00:00
|
|
|
|
|
|
|
=== Strict mode
|
|
|
|
|
|
|
|
Each database has an optional strict mode. If strict mode is on, then asking
|
|
|
|
for a collection that does not exist will raise an error, as will asking to
|
|
|
|
create a collection that already exists. Note that both these operations are
|
|
|
|
completely harmless; strict mode is a programmer convenience only.
|
|
|
|
|
|
|
|
To turn on strict mode, either pass in :strict => true when obtaining a DB
|
|
|
|
object or call the :strict= method:
|
|
|
|
|
|
|
|
db = XGen::Mongo::Driver::Mongo.new.db('dbname', :strict => true)
|
|
|
|
# I'm feeling lax
|
|
|
|
db.strict = false
|
|
|
|
# No, I'm not!
|
|
|
|
db.strict = true
|
|
|
|
|
|
|
|
The method DB#strict? returns the current value of that flag.
|
|
|
|
|
2009-01-13 17:53:55 +00:00
|
|
|
|
2008-12-02 01:20:00 +00:00
|
|
|
= Testing
|
|
|
|
|
2009-01-08 16:42:52 +00:00
|
|
|
If you have the source code, you can run the tests.
|
|
|
|
|
2008-12-02 01:20:00 +00:00
|
|
|
$ rake test
|
|
|
|
|
|
|
|
The tests assume that the Mongo database is running on the default port.
|
|
|
|
|
2009-01-12 14:48:24 +00:00
|
|
|
The project mongo-qa (http://github.com/mongodb/mongo-qa) contains many more
|
|
|
|
Mongo driver tests that are language independent. To run thoses tests as part
|
|
|
|
of the "rake test" task, run
|
|
|
|
|
|
|
|
$ rake mongo_qa
|
|
|
|
$ rake test
|
|
|
|
|
|
|
|
The mongo_qa task uses the "git clone" command to make a copy of that project
|
|
|
|
in a directory named mongo-qa. If the directory already exists, then the
|
|
|
|
mongo_qa task uses "git pull" to updated the code that's there. The Ruby
|
|
|
|
driver tests will then use some of the data files from that project when it
|
|
|
|
runs BSON tests. You can delete this directory at any time if you don't want
|
|
|
|
to run those tests any more.
|
|
|
|
|
2009-01-12 16:23:07 +00:00
|
|
|
Additionally, the script bin/validate is used by the mongo-qa project's
|
|
|
|
validator script.
|
|
|
|
|
2008-12-02 01:21:22 +00:00
|
|
|
|
2008-12-04 22:02:19 +00:00
|
|
|
= Documentation
|
|
|
|
|
2009-01-08 16:42:52 +00:00
|
|
|
This documentation is available online at http://mongo.rubyforge.org. You can
|
|
|
|
generate the documentation if you have the source by typing
|
|
|
|
|
2008-12-04 22:02:19 +00:00
|
|
|
$ rake rdoc
|
|
|
|
|
2009-01-08 16:42:52 +00:00
|
|
|
Then open the file html/index.html.
|
2008-12-02 15:45:02 +00:00
|
|
|
|
|
|
|
|
2009-01-07 21:07:22 +00:00
|
|
|
= Release Notes
|
2008-12-02 15:45:02 +00:00
|
|
|
|
2009-01-07 17:51:16 +00:00
|
|
|
See the git log comments.
|
2008-12-02 15:45:02 +00:00
|
|
|
|
|
|
|
|
2008-12-02 01:21:22 +00:00
|
|
|
= To Do
|
|
|
|
|
2009-01-07 21:56:34 +00:00
|
|
|
* Add group_by. Need to figure out how we are going to send functions. The
|
|
|
|
current thinking is that Mongo will allow a subset of JavaScript (which we
|
|
|
|
would have to send as a string), but this is still under discussion.
|
|
|
|
|
2008-12-17 16:03:09 +00:00
|
|
|
* Tests for update and repsert.
|
|
|
|
|
2008-12-16 22:35:31 +00:00
|
|
|
* Add a way to specify a collection of databases on startup (a simple array of
|
|
|
|
IP address/port numbers, perhaps, or a hash or something). The driver would
|
2008-12-16 22:19:53 +00:00
|
|
|
then find the master and, on each subsequent command, ask that machine if it
|
|
|
|
is the master before proceeding.
|
2008-12-16 22:08:15 +00:00
|
|
|
|
2008-12-04 21:25:51 +00:00
|
|
|
* Introduce optional per-database and per-collection PKInjector.
|
|
|
|
|
2008-12-02 01:21:22 +00:00
|
|
|
* More tests.
|
|
|
|
|
2009-01-14 15:45:12 +00:00
|
|
|
== Optimizations
|
|
|
|
|
|
|
|
* Only update message sizes once, not after every write of a value. This will
|
|
|
|
require an explicit call to update_message_length in each message subclass.
|
|
|
|
|
|
|
|
* ensure_index commands should be cached to prevent excessive communication
|
|
|
|
with the database. (Or, the driver user should be informed that ensure_index
|
|
|
|
is not a lightweight operation for the particular driver.)
|
2008-12-02 12:22:32 +00:00
|
|
|
|
2008-12-02 01:21:22 +00:00
|
|
|
|
2008-12-05 21:39:00 +00:00
|
|
|
= Credits
|
|
|
|
|
|
|
|
Adrian Madrid, aemadrid@gmail.com
|
2009-01-06 15:49:18 +00:00
|
|
|
* bin/mongo_console
|
2008-12-05 21:39:00 +00:00
|
|
|
* examples/benchmarks.rb
|
|
|
|
* examples/irb.rb
|
2008-12-08 20:08:14 +00:00
|
|
|
* Modifications to examples/simple.rb
|
|
|
|
* Found plenty of bugs and missing features.
|
2009-01-06 15:49:18 +00:00
|
|
|
* Ruby 1.9 support.
|
|
|
|
* Gem support.
|
2008-12-08 20:08:14 +00:00
|
|
|
* Many other code suggestions and improvements.
|
2008-12-05 21:39:00 +00:00
|
|
|
|
|
|
|
|
2008-12-02 01:20:00 +00:00
|
|
|
= License
|
|
|
|
|
2009-01-06 15:51:01 +00:00
|
|
|
Copyright (C) 2008-2009 10gen Inc.
|
2008-12-02 01:20:00 +00:00
|
|
|
|
|
|
|
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.
|
|
|
|
|
2008-12-17 16:49:06 +00:00
|
|
|
See http://www.gnu.org/licenses for a copy of the GNU Affero General Public
|
2008-12-02 01:20:00 +00:00
|
|
|
License.
|