How do I return the object after a model save like:
Message.new(:receiver => receiver, :sender => self,
:subject => subject,
:body => body).save
I understand I could probably do a
Message.last
But will there be any implications during a high traffic time period where the database is constantly being accessed? I'm afraid that Message.last will return another record.