I have a model object in Django. One of the methods on the object uses row-level locking to ensure values are accurate, like so:
class Foo(model.Model):
counter = models.IntegerField()
@transaction.commit_on_success
def increment(self):
x = Foo.objects.raw("SELECT * from fooapp_foo WHERE id = %s FOR UPDATE", [self.id])[0]
x.counter += 1
x.save()
The problem is if you call increment on a foo object, the object's values no longer reflect the values in the database. I need a way to refresh the values in the object, or at least mark them as stale so they're refetched if necessary. Apparently, this is functionality the developers of Django refuse to add.
I tried using the following code:
for field in self.__class__._meta.get_all_field_names():
setattr(self, field, getattr(offer, field))
Unfortunately, I have a second model with the following definition:
class Bar(model.Model):
foo = models.ForeignKey(Foo)
This causes an error, because it shows up in the field listing but you cannot getattr or setattr it.
I have two questions:
How can I refresh the values on my object?
Do I need to worry about refreshing any objects with references to my object, like foreign keys?