Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
1  
Why are 'refreshing' your objects? If you are changing the fields intentionally, why aren't you saving them? If you are not changing the fields intentionally, why aren't you re-fetching the data from the db? – Keeyai Mar 20 '12 at 17:53
"the object's values no longer reflect the values in the database" which values? Counter will be updated in db and on your instance of the model, no? – AJP Apr 9 at 9:57

6 Answers

I assume you must need to do this from within the class itself, or you would just do something like:

def refresh(obj):
    """ Reload an object from the database """
    return obj.__class__._default_manager.get(pk=obj.pk)

But doing that internally and replacing self gets ugly...

share|improve this answer
1  
Yes, which is why the Django developers should add a "refresh" method. Oddly, they refuse to do it, because they feel it's trivial to do on your own. I can't figure out why they think it's easy. – Chris B. Mar 23 '12 at 13:20

Hmm. It seems to me that you can never be sure that your any foo.counter is actually up to date... And this is true of any kind of model object, not just these kinds of counters...

Let's say you have the following code:

    f1 = Foo.objects.get()[0]
    f2 = Foo.objects.get()[0]  #probably somewhere else!
    f1.increment() #let's assume this acidly increments counter both in db and in f1
    f2.counter # is wrong

At the end of this, f2.counter will now be wrong.

Why is refreshing the values so important - why not just can get back a new instance whenever needed?

    f1 = Foo.objects.get()[0]
    #stuff
    f1 = Foo.objects.get(pk=f1.id)

But if you really need to you could create a refresh method yourself... like you indicated in your question but you need to skip related fields, so you could just specify the lists of fieldnames that you want to iterate over (rather than _meta.get_all_fieldnames). Or you could iterate over Foo._meta.fields it will give you Field objects, and you can just check on the class of the field -- I think if they are instances of django.db.fields.field.related.RelatedField then you skip them. You could if you wanted then speed this up by doing this only on loading your module and storing this list in your model class (use a class_prepared signal)

share|improve this answer
Just realized that – Tim Diggins Mar 25 '12 at 7:57

I see why you're using SELECT ... FOR UPDATE, but once you've issued this, you should still be interacting with self.

For example, try this instead:

@transaction.commit_on_success
def increment(self):
    Foo.objects.raw("SELECT id from fooapp_foo WHERE id = %s FOR UPDATE", [self.id])[0]
    self.counter += 1
    self.save()

The row is locked, but now the interaction is taking place on the in-memory instance, so changes remain in sync.

share|improve this answer
I thought about that, but it doesn't work. Let's say we have two processes, A and B. If process A loads the object, process B can still modify the counter field in the database. If process A now locks the database row but operates on the in-memory instance of the object, it's operating on stale data. – Chris B. Mar 20 '12 at 21:58

You can use Django's F expressions to do this.

To show an example, I'll use this model:

# models.py
from django.db import models
class Something(models.Model):
    x = models.IntegerField()

Then, you can do something like this:

    from models import Something
    from django.db.models import F

    blah = Something.objects.create(x=3)
    print blah.x # 3

    # set property x to itself plus one atomically
    blah.x = F('x') + 1
    blah.save()

    # reload the object back from the DB
    blah = Something.objects.get(pk=blah.pk)
    print blah.x # 4
share|improve this answer
That would work in this instance. In our real problem, however, we need to do more complicated transactions involving a couple of different objects, and it's just a little beyond the reach of F expressions. – Chris B. Mar 20 '12 at 22:17

Quick, ugly and untested:

from django.db.models.fields.related import RelatedField

for field in self.__class__._meta.fields:
    if not isinstance(field, RelatedField):
        setattr(self, field.attname, getattr(offer, field)) 

though I think you could do this using some other _meta approach over the isinstance() call.

Obviously, we both know this should be avoided if possible. Maybe a better approach would be to futz with the internal model state?

EDIT - Is the Django 1.4 SELECT FOR UPDATE support going to solve this?

share|improve this answer
The SELECT FOR UPDATE doesn't help, because we still need a way to refresh the object. And I don't think your solution works, because any related fields remain stale. We need to refresh them as well. – Chris B. Mar 23 '12 at 13:18
Oh, my mistake- I thought you were only concerned about non-related fields. – Matt Luongo Mar 23 '12 at 20:45

I have some long running processes which are running in parallel. Once the calculations are done, I want to update the values and save the model, but I don't want the entire process to tie up a transaction. So my strategy is something like

model = Model.objects.get(pk=pk)

# [ do a bunch of stuff here]

# get a fresh model with possibly updated values
with transaction.commit_on_success():
    model = model.__class__.objects.get(pk=model.pk)
    model.field1 = results
    model.save()
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.