gpt4 book ai didi

ruby-on-rails - Ruby 从数组中随机选择有时会重复返回相同的值

转载 作者:太空宇宙 更新时间:2023-11-03 17:53:29 25 4
gpt4 key购买 nike

我用它来选择一个随机的 Matchup,我测试它的结果,并绘制一个随机的 Matchup,直到它满足 while 循环的条件:

m = Matchup.order("RANDOM()").first

循环设置为10次循环后break(避免无限循环),我会任意跳出循环,查看日志,每次Matchup都是一样的它经历了循环。循环的简化版本如下所示:

counter = 0
while counter < 5
m = Matchup.order("RANDOM()").first
logger.debug('Matchup ID: ' + m.id)
counter += 1
end

日志将如下所示:

Matchup ID: 7
Matchup ID: 7
Matchup ID: 7
Matchup ID: 7
Matchup ID: 7

为什么 m = Matchup.order("RANDOM()").first 不会随意拉出不同的 Matchup?最奇怪的部分是有时它可以正常工作,而其他时候它会卡在循环中 b/c m 没有改变。有什么建议吗?

如果您想查看实际的循环,可以在此处查看(在 getRandomMatchup 函数中): https://github.com/jackerman09/wdis/blob/master/app/controllers/static_pages_controller.rb

最佳答案

添加另一个变体:)

ids = Matchup.pluck(:id)
m = Matchup.find( ids.shuffle.first )

除非 id 值集过多,否则这会很好地工作,在这种情况下,您正在洗牌一个非常大的数组。但是,在 1k 到 2k 的集合大小中,用户不会注意到它。

或者简单地说:

ids = Matchup.pluck(:id)
m = Matchup.find( ids.sample )

将从 ids 数组中随机选择一个项目。

关于ruby-on-rails - Ruby 从数组中随机选择有时会重复返回相同的值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19383871/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com