How could I improve the performance of the following updates ?

Post.find(id1).update_attributes(:my_field => value1)
Post.find(id2).update_attributes(:my_field => value2)
Post.find(id3).update_attributes(:my_field => value3)
        ...                               ...
Post.find(idN).update_attributes(:my_field => valueN)
link|improve this question

There isn't a way around finding and updating a record as you will still need to execute a SELECT and a UPDATE statement on your database. Perhaps you could take id[x] though and put it in a loop so you don't repeat a lot of code? – creativetechnologist Aug 30 '11 at 11:56
Well, I wonder if there is some sophisticated SQL query to speed this up... – Misha Moroshko Aug 30 '11 at 11:57
feedback

1 Answer

up vote 1 down vote accepted

You can do it with a single SQL query using update_all

Post.update_all("field = 'value'", "id IN (id1, id2...)")

EDIT: This won't work with a single statement, of course you will have N Post.update_all sentences for N posts since each post will have different value, but since it makes and SQL UPDATE and doens't instantiate the Post objects is currently faster than Post.find.update_attributes.

link|improve this answer
what will make 'value' increase for each id ? – Michael Durrant Aug 30 '11 at 12:04
1  
That works only if you have one value... – lucapette Aug 30 '11 at 12:05
That's right, sorry, my mistake. – cicloon Aug 30 '11 at 12:08
I have different N new values. – Misha Moroshko Aug 30 '11 at 12:23
Take a look at my edited answer. – cicloon Aug 30 '11 at 12:28
feedback

Your Answer

 
or
required, but never shown

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