Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
サブスポットを使用してIDでエンティティを検索する方法はありますか
そのようです:
Content.search do with(:ids, [1,2,3]) end
id残念ながら、これを実現する唯一の方法は、フィールドのインデックスを作成することです。
id
class YourModel < ActiveRecord::Base searchable do integer :id # ... end end