thomasfedb
thomasfedb

Reputation: 5983

Using MongoDB with Rails - Any Good Articles?

I'm hearing a lot recently about NoSQL databases, particularly MongoDB. I'm interested to know what the implications of changing to a MongoDB database is within the context of a Ruby on Rails appplication.

I haven't been able to find an article that gives a good description of how things vary from using an SQL database when using MongoDB.

Do we still have database migrations? Relationships? Will has_one still work? What are the current adapters like?

Thanks.

Upvotes: 5

Views: 1441

Answers (4)

sausman
sausman

Reputation: 253

Railscasts has some episodes on MongoDB & Rails:

http://railscasts.com/episodes/238-mongoid

http://railscasts.com/episodes/194-mongodb-and-mongomapper

Upvotes: 3

shingara
shingara

Reputation: 46914

You can find the mongotips blog too

http://mongotips.com/

it explain a lot of thing about what MongoDb is awesome

Upvotes: 8

Jason
Jason

Reputation: 847

there is an article on mongodb's website: here

Upvotes: 4

Related Questions