vote up 0 vote down star
1

Hi

I've been using Django for over a year, but I think I've missed out on some very fundamental thing. I have a rather large queryset (1000+ objects) and I'd like to change a single attribute for each of the objects in that queryset. Is this really the way to go? I'm sure there is something simpler?

for obj in qs:
  obj.my_attr = True 
  obj.save()

Thanks

flag

1 Answer

vote up 9 vote down check

You can just do the changes in bulk, although this will not fire the Model's save() callbacks:

MyModel.objects.filter(..).update(my_attr=True)

Documentation: Updating multiple objects at once

link|flag
Ah, I can't believe I've completely missed the 'update' method! Thanks. – blahblah Jun 11 at 11:32
1  
+1 - although I think your "may not" can be changed to "will not", right? – Dominic Rodger Jun 11 at 11:37
Yup, sorry, I wrote it before I found the documentation. :) – Paolo Bergantino Jun 11 at 11:40

Your Answer

Get an OpenID
or

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