mongo-ruby-driver/examples/simple.rb

18 lines
550 B
Ruby
Raw Normal View History

2008-11-22 01:00:51 +00:00
$LOAD_PATH[0,0] = File.join(File.dirname(__FILE__), '..', 'lib')
require 'mongo'
include XGen::Mongo::Driver
host = ENV['MONGO_RUBY_DRIVER_HOST'] || 'localhost'
port = ENV['MONGO_RUBY_DRIVER_PORT'] || XGen::Mongo::Driver::Mongo::DEFAULT_PORT
puts "Connecting to #{host}:#{port}"
2008-12-05 00:07:49 +00:00
db = Mongo.new(host, port).db('ruby-mongo-examples-simple')
2008-11-22 01:00:51 +00:00
coll = db.collection('test')
coll.clear
2008-12-17 16:43:00 +00:00
3.times { |i| coll.insert({'a' => i+1}) }
puts "There are #{coll.count()} records in the test collection. Here they are:"
2008-11-22 01:00:51 +00:00
coll.find().each { |doc| puts doc.inspect }