roundrobin:将循环算法添加到您的逻辑

时间:2024-06-01 08:29:54
【文件属性】:

文件名称:roundrobin:将循环算法添加到您的逻辑

文件大小:5KB

文件格式:ZIP

更新时间:2024-06-01 08:29:54

Ruby

轮循 将基于循环的流程添加到您的流程中。 安装 将此行添加到您的应用程序的Gemfile中: gem 'roundrobin' 然后执行: $ bundle 或将其自己安装为: $ gem install roundrobin 用法 初始化循环实例 >> rr = Roundrobin . new 或者 >> rr = Roundrobin . new ( "redis://:p4ssw0rd@10.0.1.1:6380/15" ) 现在,您可以要求下一项(按循环逻辑) >> rr . next ( %w( foo bar ) ) => "foo" >> rr . next ( %w( foo bar ) ) => "bar" >> rr . next ( %w( foo bar ) ) => "foo" >> candidates = [ { name : 'John'


【文件预览】:
roundrobin-master
----.travis.yml(30B)
----Rakefile(117B)
----Gemfile(38B)
----.rspec(31B)
----spec()
--------roundrobin_spec.rb(1KB)
--------spec_helper.rb(152B)
----.gitignore(124B)
----roundrobin.gemspec(1KB)
----lib()
--------roundrobin.rb(690B)
--------roundrobin()
----README.md(2KB)
----LICENSE.txt(1KB)

网友评论