Skip to content

Use Threads #105

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 22 additions & 13 deletions client.rb
Original file line number Diff line number Diff line change
Expand Up @@ -15,64 +15,73 @@
# - одновременно можно запускать не более одного
#
def a(value)
puts "https://localhost:9292/a?value=#{value}"
Faraday.get("https://localhost:9292/a?value=#{value}").body
Thread.new do
puts "https://localhost:9292/a?value=#{value}"
Faraday.get("https://localhost:9292/a?value=#{value}").body
end
end

def b(value)
puts "https://localhost:9292/b?value=#{value}"
Faraday.get("https://localhost:9292/b?value=#{value}").body
Thread.new do
puts "https://localhost:9292/b?value=#{value}"
Faraday.get("https://localhost:9292/b?value=#{value}").body
end
end

def c(value)
puts "https://localhost:9292/c?value=#{value}"
Faraday.get("https://localhost:9292/c?value=#{value}").body
Thread.new do
puts "https://localhost:9292/c?value=#{value}"
Faraday.get("https://localhost:9292/c?value=#{value}").body
end
end

# Референсное решение, приведённое ниже работает правильно, занимает ~19.5 секунд
# Надо сделать в пределах 7 секунд

def collect_sorted(arr)
arr.sort.join('-')
arr.map(&:value).sort.join('-')
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Лайк за Thread.value, в целом получилось очень просто и понятно, респект 💪

end

start = Time.now

### 1 queue
a11 = a(11)
a12 = a(12)
a13 = a(13)
b1 = b(1)
b2 = b(2)

ab1 = "#{collect_sorted([a11, a12, a13])}-#{b1}"
ab1 = "#{collect_sorted([a11, a12, a13])}-#{b1.value}"
puts "AB1 = #{ab1}"

c1 = c(ab1)
puts "C1 = #{c1}"

### 2 queue
a21 = a(21)
a22 = a(22)
a23 = a(23)
b2 = b(2)
b3 = b(3)

ab2 = "#{collect_sorted([a21, a22, a23])}-#{b2}"
ab2 = "#{collect_sorted([a21, a22, a23])}-#{b2.value}"
puts "AB2 = #{ab2}"

c2 = c(ab2)
puts "C2 = #{c2}"

### 3 queue
a31 = a(31)
a32 = a(32)
a33 = a(33)
b3 = b(3)

ab3 = "#{collect_sorted([a31, a32, a33])}-#{b3}"
ab3 = "#{collect_sorted([a31, a32, a33])}-#{b3.value}"
puts "AB3 = #{ab3}"

c3 = c(ab3)
puts "C3 = #{c3}"

c123 = collect_sorted([c1, c2, c3])
result = a(c123)
result = a(c123).value

puts "FINISHED in #{Time.now - start}s."
puts "RESULT = #{result}" # 0bbe9ecf251ef4131dd43e1600742cfb
Binary file added rails-optimization-task5.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.