Building Your First MongoDB App in Ruby: An OSCON 2012 Tutorial
Join the DZone community and get the full member experience.
Join For FreeThis is a 3 hour tutorial I wrote for and gave at OSCON 2012.
Here is the summary:
This tutorial will introduce the features of MongoDB by building a simple location-based application using MongoDB. The tutorial will cover the basics of MongoDB’s document model, query language, map-reduce framework and deployment architecture.
The tutorial will be divided into 5 sections:
- Data modeling with MongoDB: documents, collections and databases
- Querying your data: simple queries, geospatial queries, and text-searching
- Writes and updates: using MongoDB’s atomic update modifiers
- Trending and analytics: Using mapreduce and MongoDB’s aggregation framework
- Deploying the sample application
Besides the knowledge to start building their own applications with MongoDB, attendees will finish the session with a working application they use to check into locations around Portland from any HTML5 enabled phone!
TUTORIAL PREREQUISITES
Each attendee should have a running version of MongoDB. Preferably the
latest unstable release 2.1.x, but any install after 2.0 should be fine.
You can dowload MongoDB at http://www.mongodb.org/downloads.
Instructions for installing MongoDB are at http://docs.mongodb.org/manual/installation/.
Additionally we will be building an app in Ruby. Ruby 1.9.3+ is required for this. The current latest version of ruby is 1.9.3-p194.
- For windows download the http://rubyinstaller.org/
- For OSX download http://unfiniti.com/software/mac/jewelrybox/
- For linux most users should know how to for their own distributions.
We will be using the following GEMs and they MUST BE installed ahead of time so you can be ahead of the game and safe in the event that the Internet isn’t accommodating.
- bson (1.6.4)
- bson_ext (1.6.4)
- haml (3.1.4)
- mongo (1.6.4)
- rack (1.4.1)
- rack-protection (1.2.0)
- rack shotgun (0.9)
- sinatra (1.3.2)
- tilt (1.3.3)
Prior ruby experience isn’t required for this. We will NOT be using rails for this app.
Published at DZone with permission of Steve Francia, DZone MVB. See the original article here.
Opinions expressed by DZone contributors are their own.
Trending
-
5 Key Concepts for MQTT Broker in Sparkplug Specification
-
Chaining API Requests With API Gateway
-
Writing a Vector Database in a Week in Rust
-
What Is React? A Complete Guide
Comments