Created
October 17, 2021 21:00
-
-
Save j3ck/864bf5aa0026c20e6e0480b36f50b375 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'open-uri' | |
@files = | |
[ | |
'file_example_JPG_1MB.jpg', | |
'file_example_GIF_1MB.gif', | |
'file_example_PNG_1MB.png' | |
] | |
def sync | |
t = Time.now | |
@files.each do |file| | |
File.open(file, 'w') do |_file| | |
_file.write(open("https://file-examples-com.github.io/uploads/2017/10/#{file}").read) | |
end | |
end | |
puts Time.now - t | |
end | |
def async | |
t = Time.now | |
@files.map do |file| | |
Thread.new do | |
File.open(file, 'w') do |_file| | |
_file.write(open("https://file-examples-com.github.io/uploads/2017/10/#{file}").read) | |
end | |
end | |
end.map(&:join) | |
puts Time.now - t | |
end | |
# sync | |
async |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment