I have an array of ids, stored in some external storage (rails cache or redis). In controller's action I fetch this data and select object using it, i.e.
ids = [5, 1, 17, 84] # really fetched from external source
result = MyModel.where(:id => ids)
I also want it to be ordered just the same as ids in array_of ids:
ids == result.map(&:id) # => true
As workaround I use sorting by mysql FIELD function:
MyModel.where(:id => ids).order("FIELD(id, #{ids.join ', '})")
But I don't like this approach as it is mysql specific and creates very long queries in case of big ids
array.
Is there better, DB-agnostic way to do it? Fetching unsorted data from DB and sorting on ruby side is undesirable because it's resource-expensive and hard to use with pagination.
Thanks.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…