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.
私はこの変数内@resultsにTire::Results::Collection多くの結果を持っています。
@results
Tire::Results::Collection
これのランダムな結果を1つ取得するにはどうすればよいですかTire::Results::Collection
ありがとう!
Ruby 1.9 では、次のArray#sampleメソッドを使用します。
Array#sample
p [1, 2, 3].sample # ----- require 'tire' s = Tire.search { query { all } } p s.results.to_a.sample