Assume this code
instance1 = MyModel.find(1)
instance2 = MyModel.find(1)
Is instance1.equals(instance2)
true? (i.e. are they the same objects?)
And after this:
instance1.my_column = "new value"
Does instance2.my_column
also contain "new value"?