Skip to content

Instantly share code, notes, and snippets.

@gaganawhad
Last active August 29, 2015 14:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gaganawhad/0ae8fa226026894e7b1e to your computer and use it in GitHub Desktop.
Save gaganawhad/0ae8fa226026894e7b1e to your computer and use it in GitHub Desktop.
What is Ruby Object Mapper (ROM) and why should you be excited about it?
What is Ruby Object Mapper (ROM) and why should you be excited about it?
ActiveRecord

The Active Record pattern is described as

An object that wraps a row in a database table or view, encapsulates the database access, and adds domain logic on that data.

It is tightly coupled to the database schema. In other words, decisions that go into designing entities (objects/classes that hold application independent business logic) of your software project affect the database and vice versa.

Ideally, the database is a layer of abstraction lower than your application. What that means is that the decisions of your peristence layer should not affect design decisions of your business logic and vice versa. As an example, you should be able to think through the design decisions of a relational or a non relational database looking at peristence only and not having to wonder how that would affect the rest of your application. This is definitely not true in a conventional rails app, and I imagine, it won’t be true in any application that uses the active record design pattern.

DataMapper

The data mapper pattern on the other hand just maps data to your data to your objects. You can design your entities just as you would in any ruby application without being concerned about how your design decision for entities/models affect the database. You can keep them independent of your database. (At-least that’s my idealized understanding of it). This will increase work for you to do upfront, but will let your app be layered allowing for modularized decisions.

Work done in ruby so far:

Data mapper project in ruby, ironically, is an implementation of the active record pattern. I am not sure if that was intentional or not. So, in order to implement the data mapper pattern, data-mapper2 was envisioned and worked on. It has been renamed to Ruby Object Mapper since. It’s currently being used in production in some apps. Piotr Solnica is leading the project and it's 1.0 release is estimated to be in September 2015!

Other interesting links on the subject:
@joeosburn
Copy link

I found this tutorial on ROM to be very enlightening: http://rom-rb.org/tutorials/todo-app-with-rails/

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment