codefly:Rails 中的简单并行异步编程

时间:2024-07-16 05:18:04
【文件属性】:

文件名称:codefly:Rails 中的简单并行异步编程

文件大小:8KB

文件格式:ZIP

更新时间:2024-07-16 05:18:04

Ruby

使用 CodeFly,您可以轻松地在 Rails 中执行并行/异步代码。 这是经典代码的样子: @blue_cars = Vehicle . where ( type : "car" , color : "blue" ) # 0.1 sec @accessories = Accessory . where ( type : "car" ) # 0.1 sec # some code # some code using @blue_cars and @accessories 这是飞行代码的样子: fly ( :A ) { @blue_cars = Vehicle . where ( type : "car" , color : "blue" ) } # 0.1 sec fly ( :B ) { @accessories = Accessory . where ( type : "ca


【文件预览】:
codefly-master
----.gitignore(123B)
----README.md(2KB)
----codefly-0.0.1.gem(7KB)
----Gemfile(92B)
----codefly.gemspec(916B)
----LICENSE.txt(1KB)
----lib()
--------codefly.rb(1KB)
--------codefly()
----Rakefile(29B)

网友评论