Ruby on Railsで異なる値を持つ1つのクエリでより多くのレコードを更新するより良い方法はありますか? SQL で CASE を使用して解決しましたが、そのための Active Record ソリューションはありますか?
基本的に、新しいリストがjquery ajaxポストから戻ってきたときに、新しいソート順を保存します。
#List of product ids in sorted order. Get from jqueryui sortable plugin.
#product_ids = [3,1,2,4,7,6,5]
# Simple solution which generate a loads of queries. Working but slow.
#product_ids.each_with_index do |id, index|
# Product.where(id: id).update_all(sort_order: index+1)
#end
##CASE syntax example:
##Product.where(id: product_ids).update_all("sort_order = CASE id WHEN 539 THEN 1 WHEN 540 THEN 2 WHEN 542 THEN 3 END")
case_string = "sort_order = CASE id "
product_ids.each_with_index do |id, index|
case_string += "WHEN #{id} THEN #{index+1} "
end
case_string += "END"
Product.where(id: product_ids).update_all(case_string)
このソリューションは高速で 1 つのクエリのみで動作しますが、php のようにクエリ文字列を作成します。:) あなたの提案は何ですか?