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”?
No, it doesn’t. You can keep
instance2in sync withreload.Keep in mind you must save
instance1changes to the database.