Wie aktualisiert man ActiveRecord-Ergebnisse auf "Rails-Art"? Beispiel:
stuff = Stuff.find(:id)
a = stuff.x # a = 3
(at this time field value in database stuff.x changed to 7 )
a = stuff.x # a = 3 but I need here 7
Ist es möglich, etwas wie stuff.refresh_data zu tun, um die Abfrage erneut auszuführen?